-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.17 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
42
{
"name": "@j-token/easy-opencode",
"version": "0.2.1",
"description": "OpenCode plugin: LSP + AST-grep tools (no agents)",
"type": "module",
"main": "dist/plugin/index.js",
"types": "dist/index.d.ts",
"bin": {
"easy-opencode": "bin/easy-opencode"
},
"files": [
"dist",
"bin"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/plugin/index.js"
}
},
"scripts": {
"build": "bun build src/index.ts --outdir dist/plugin --target bun --format esm && bun build src/cli/index.ts --outdir dist/cli --target node --format esm --external jsonc-parser --external @clack/prompts --external picocolors && tsc --emitDeclarationOnly",
"typecheck": "tsc --noEmit",
"test": "bun test"
},
"dependencies": {
"@opencode-ai/plugin": "^1.0.162",
"@ast-grep/cli": "^0.40.0",
"@ast-grep/napi": "^0.40.0",
"jsonc-parser": "^3.3.1",
"zod": "^4.1.8",
"vscode-jsonrpc": "^8.2.1",
"vscode-languageserver-protocol": "^3.17.5",
"vscode-uri": "^3.1.0",
"@clack/prompts": "^0.10.1",
"picocolors": "^1.1.1"
},
"devDependencies": {
"bun-types": "latest",
"typescript": "^5.7.3"
}
}