generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
45 lines (45 loc) · 1.55 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "Metadata-menu",
"version": "0.8.0",
"description": "Managing metadata of notes",
"main": "main.js",
"scripts": {
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production --define:MDM_DEBUG=false",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"css:clean": "rm -f styles.css",
"css:compile": "sass ./src/assets/css/styles.scss ./styles.css --no-source-map && cp ./styles.css ./test-vault-mdm/.obsidian/plugins/metadata-menu/styles.css",
"build:css": "npm run css:clean && npm run css:compile",
"build:css:watch": "onchange -i './src/assets/css/*.scss' './src/assets/css/*.css' -- npm run build:css",
"dev": "node esbuild.config.mjs --define:MDM_DEBUG=true",
"dev:silent": "node esbuild.config.mjs --define:MDM_DEBUG=false"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"obsidian": "latest",
"onchange": "^7.1.0",
"sass": "^1.64.1",
"ts-node-dev": "^2.0.0",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"@codemirror/lang-json": "^6.0.1",
"@codemirror/language": "github:lishid/cm-language",
"@codemirror/legacy-modes": "^6.3.3",
"@codemirror/lint": "^6.4.1",
"@codemirror/stream-parser": "^0.19.9",
"@popperjs/core": "^2.11.5",
"codemirror": "^6.0.1",
"crypto-random-string": "^5.0.0",
"yaml": "^2.3.2"
},
"type": "module"
}