forked from optix2000/opencode-ast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 849 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 849 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
{
"name": "opencode-ast",
"version": "0.2.0",
"description": "AST plugin for OpenCode — tree-sitter powered code structure analysis",
"type": "module",
"main": "src/index.ts",
"exports": {
".": {
"import": "./src/index.ts",
"default": "./src/index.ts"
}
},
"files": [
"src"
],
"scripts": {
"test": "bun test",
"typecheck": "bunx tsc --noEmit",
"bundle": "bun run bundle.ts",
"update:wasm-manifest": "bun run update-wasm-manifest.ts",
"prepublishOnly": "bun run bundle"
},
"engines": {
"bun": ">=1.0"
},
"peerDependencies": {
"@opencode-ai/plugin": "*"
},
"dependencies": {
"effect": "4.0.0-beta.59",
"web-tree-sitter": "0.26.8"
},
"devDependencies": {
"@opencode-ai/plugin": "1.14.41",
"@types/bun": "1.3.13",
"typescript": "^6.0.3"
}
}