-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 780 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 780 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
{
"name": "jj-opencode",
"version": "0.2.0",
"description": "OpenCode plugin for JJ VCS - enforces 'define change before implementation' workflow",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"keywords": [
"opencode",
"opencode-plugin",
"jj",
"jujutsu",
"vcs",
"version-control"
],
"author": "DPS",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dpshade/jj-opencode"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=0.1.0"
},
"devDependencies": {
"@opencode-ai/plugin": "latest",
"typescript": "^5.0.0"
}
}