generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.2 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
{
"name": "silhouette",
"version": "0.27.0",
"description": "Simple task management tools for Obsidian",
"main": "main.js",
"scripts": {
"dev": "bun esbuild.config.mts",
"build": "tsc -noEmit -skipLibCheck && bun esbuild.config.mts production",
"pre:push": "tsc -noEmit -skipLibCheck && bun run test",
"test": "jest",
"ci": "bun install && bun run build && bun run test"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@event-calendar/core": "^2.6.1",
"@event-calendar/day-grid": "^2.6.1",
"@tsconfig/svelte": "^5.0.2",
"@types/bun": "^1.1.13",
"@types/node": "^20.11.19",
"builtin-modules": "3.3.0",
"chokidar": "^3.6.0",
"esbuild": "^0.21.4",
"esbuild-jest": "^0.5.0",
"esbuild-svelte": "^0.8.0",
"jest": "^29.7.0",
"obsidian": "^1.4.11",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-svelte": "^3.2.1",
"svelte": "^4.2.11",
"svelte-preprocess": "^5.0.1",
"tslib": "^2.6.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@tadashi-aikawa/silhouette-core": "npm:@jsr/tadashi-aikawa__silhouette-core@^1.5.1",
"owlelia": "^0.48.1"
}
}