-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.49 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
43
44
45
46
47
48
49
50
51
52
{
"name": "@debugtalk/opencode-dap",
"version": "0.2.0",
"description": "DAP (Debug Adapter Protocol) client for OpenCode AI coding agent",
"license": "MIT",
"author": "debugtalk",
"homepage": "https://github.com/debugtalk/opencode-dap#readme",
"bugs": "https://github.com/debugtalk/opencode-dap/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/debugtalk/opencode-dap.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"engines": {
"bun": ">=1.3.14"
},
"type": "module",
"main": "src/index.ts",
"exports": {
".": "./src/index.ts",
"./plugin": "./src/plugin.ts",
"./types": "./src/types.ts",
"./config": "./src/config.ts"
},
"files": [
"src",
"README.md",
"LICENSE"
],
"scripts": {
"check": "tsc --noEmit",
"check:syntax": "bun --check src/client.ts src/config.ts src/session.ts src/types.ts src/non-interactive-env.ts src/plugin.ts src/index.ts tests/helpers.ts tests/dap-launch-failures.test.ts tests/dap-config.test.ts tests/dap-write-sink-flush.typecheck.ts tests/dap-client.test.ts tests/dap-session.test.ts tests/dap-comparison.test.ts",
"test": "bun test tests/"
},
"keywords": [
"opencode",
"dap",
"debug",
"debug-adapter-protocol",
"coding-agent",
"opencode-plugin"
],
"devDependencies": {
"@opencode-ai/plugin": "^1.17.11",
"@types/node": "^25.9.3",
"bun-types": "^1.3.1",
"typescript": "^6.0.3"
}
}