33 lines
946 B
JSON
33 lines
946 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|