-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 946 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 946 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
{
"name": "obsidian-opencode",
"version": "0.2.1",
"description": "Embed OpenCode AI assistant in Obsidian",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "bun run tsc -noEmit -skipLibCheck && bun run esbuild.config.mjs production",
"test": "bun test",
"version": "bun run scripts/sync-manifest-version.ts && git add manifest.json",
"version:patch": "bun pm version patch && git push --follow-tags",
"version:minor": "bun pm version minor && git push --follow-tags",
"version:major": "bun pm version major && git push --follow-tags"
},
"keywords": [
"obsidian",
"opencode",
"ai",
"assistant"
],
"author": "mat",
"license": "MIT",
"devDependencies": {
"@types/bun": "^1.3.5",
"@types/node": "^20.11.0",
"builtin-modules": "^3.3.0",
"esbuild": "^0.21.5",
"obsidian": "latest",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
}
}