generated from Odaimoko/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.59 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
47
48
49
{
"name": "tag-project",
"version": "0.10.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",
"version": "./ci/bump_version.sh",
"postbuild": "ci/postbuild.sh"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.10",
"@types/jest": "^29.5.6",
"@types/node": "^16.11.6",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"esbuild-plugin-ifdef": "^1.0.1",
"esbuild-plugin-replace": "^1.4.0",
"eslint-plugin-react-hooks": "^4.6.2",
"jest": "^29.7.0",
"obsidian": "latest",
"obsidian-dataview": "^0.5.61",
"react": "^18.2.0",
"ts-jest": "^29.1.1",
"tslib": "2.4.0",
"typescript": "^4.7.4"
},
"dependencies": {
"chai": "^4.3.10",
"denque": "^2.1.0",
"html-react-parser": "^4.2.7",
"react-dom": "^18.2.0"
},
"dependency.comments": {
"runtime-devs": [
"should be wrapped around `ifdef` to avoid being packed in production.",
"Comments see: https://stackoverflow.com/questions/14221579/how-do-i-add-comments-to-package-json-for-npm-install",
"chai"
]
}
}