-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathpackage.json
46 lines (46 loc) · 1.46 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
46
{
"name": "obsidian-sample-plugin",
"version": "1.0.1",
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"pub": "node publish.mjs",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@vueuse/core": "^9.6.0",
"ac-auto": "^2.0.0",
"dexie": "^3.2.2",
"dexie-export-import": "^1.0.3",
"downloadjs": "^1.4.7",
"echarts": "^5.3.2",
"monkey-around": "^2.3.0",
"nlcst-to-string": "^3.1.0",
"parse-english": "^5.0.0",
"retext-english": "^4.1.0",
"unified": "^10.1.2",
"unist-util-modify-children": "^3.0.0",
"unist-util-visit": "^4.1.0",
"vue": "^3.2.31"
},
"devDependencies": {
"@the_tree/esbuild-plugin-vue3": "^0.3.1",
"@types/downloadjs": "^1.4.3",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"builtin-modules": "^3.2.0",
"esbuild": "0.13.12",
"hash-sum": "^2.0.0",
"naive-ui": "^2.33.0",
"obsidian": "latest",
"sass": "^1.56.1",
"tslib": "2.3.1",
"typescript": "4.4.4"
}
}