-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 938 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 938 Bytes
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-sidekick",
"version": "0.0.1",
"description": "Every superhero needs a sidekick.",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "biome check .",
"lint:fix": "biome check --write --unsafe .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [],
"license": "0-BSD",
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@types/node": "^20.19.0",
"@vitest/coverage-v8": "^4.1.2",
"esbuild": "0.27.4",
"jiti": "2.6.1",
"jsdom": "^29.0.1",
"tslib": "2.4.0",
"typescript": "^5.8.3",
"vitest": "^4.1.2"
},
"dependencies": {
"@google/genai": "^1.42.0",
"obsidian": "latest"
}
}