generated from TopTierTools/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"name": "obsidian-better-plugins-page",
"version": "1.0.13",
"description": "Better Plugins Page for Obsidian, add filtering and hiding to the page",
"main": "main.js",
"scripts": {
"dev": "bun esbuild.config.mjs",
"build": "bun esbuild.config.mjs production",
"version": "bun version-bump.mjs && git add manifest.json versions.json",
"typecheck": "tsc -noEmit -skipLibCheck",
"prepare": "husky install",
"release": "bash ./release.sh"
},
"keywords": [
"obsidian",
"plugins"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@total-typescript/ts-reset": "^0.5.1",
"@types/jquery": "^3.5.29",
"@types/lodash": "^4.14.202",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"bun-types": "^1.0.5-canary.20231009T140142",
"esbuild": "0.17.3",
"husky": "^8.0.3",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"dependencies": {
"chrono-node": "^2.7.3",
"jquery": "^3.7.1",
"lodash": "^4.17.21",
"observable-slim": "^0.1.6",
"zod": "^3.22.4"
}
}