-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.12 KB
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": "opencode-plugin-openspec",
"version": "0.1.2",
"description": "An OpenCode plugin that integrates OpenSpec, providing a dedicated agent for planning and specifying software architecture.",
"type": "module",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "bun build ./src/index.ts --outfile ./dist/index.js --target node",
"watch": "bun build ./src/index.ts --outfile ./dist/index.js --target node --watch",
"prepublishOnly": "bun run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Octane0411/opencode-plugin-openspec.git"
},
"keywords": [
"opencode",
"plugin",
"openspec",
"agent",
"architecture",
"planning"
],
"author": "Octane0411",
"license": "MIT",
"bugs": {
"url": "https://github.com/Octane0411/opencode-plugin-openspec/issues"
},
"homepage": "https://github.com/Octane0411/opencode-plugin-openspec#readme",
"peerDependencies": {
"@opencode-ai/plugin": "^1.1.19",
"@opencode-ai/sdk": "^1.1.19"
},
"devDependencies": {
"bun-types": "latest",
"typescript": "^5.0.0"
}
}