-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 743 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 743 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
{
"name": "edit_cae",
"version": "0.1.0",
"description": "High-reliability file editing plugin for Opencode",
"type": "module",
"main": "src/index.ts",
"scripts": {
"build": "bun build ./src/plugin.ts --outfile=plugin/index.js --target=node --bundle",
"test": "bun test tests/unit.test.ts && bun run tests/integration.test.ts && bun run tests/repro_issue.test.ts",
"install-global": "mkdir -p ~/.opencode/plugins && cp -f $(pwd)/plugin/index.js ~/.opencode/plugins/edit_cae.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"diff": "^8.0.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/diff": "^8.0.0",
"@types/node": "^25.5.0",
"typescript": "^5.9.3"
}
}