generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
34 lines (34 loc) · 928 Bytes
/
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
{
"name": "obsidian-another-quick-switcher",
"version": "12.1.0",
"description": "Todo",
"main": "main.js",
"scripts": {
"dev": "bun esbuild.config.mts",
"build": "tsc -noEmit -skipLibCheck && bun esbuild.config.mts production",
"test": "jest",
"ci": "bun install && biome check src *.mts && bun run build && bun run test",
"prepare": "husky",
"pre:push": "tsc -noEmit -skipLibCheck && biome check src *.mts && bun run test"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/bun": "^1.1.6",
"@types/node": "^20.14.11",
"builtin-modules": "^4.0.0",
"chokidar": "^3.6.0",
"esbuild": "^0.23.0",
"esbuild-jest": "^0.5.0",
"husky": "^9.1.1",
"jest": "^29.7.0",
"obsidian": "^1.7.2",
"tslib": "^2.6.3",
"typescript": "^5.5.3"
},
"dependencies": {
"ts-deepmerge": "^3.0.0"
}
}