forked from antomy-gc/gitnexus-opencode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 946 Bytes
/
package.json
File metadata and controls
43 lines (43 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
33
34
35
36
37
38
39
40
41
42
43
{
"name": "gitnexus-opencode",
"version": "0.1.0",
"description": "OpenCode plugin for GitNexus — automatic graph indexing, staleness detection, and subagent hints",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && node esbuild.config.js",
"dev": "tsc --watch",
"prepublishOnly": "tsc && node esbuild.config.js"
},
"keywords": [
"opencode",
"plugin",
"gitnexus",
"code-graph",
"mcp"
],
"engines": {
"node": ">=20"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/antomy-gc/gitnexus-opencode"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.0.0"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.3.0",
"@types/node": "^20.19.39",
"esbuild": "^0.28.0",
"typescript": "^5.7.0"
}
}