-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.46 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.46 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
53
54
55
56
57
58
{
"name": "debug-that",
"version": "0.6.3",
"description": "Universal Debugger CLI for AI Agents",
"license": "MIT",
"author": "Theodo Group",
"repository": {
"type": "git",
"url": "https://github.com/theodo-group/debug-that.git"
},
"homepage": "https://github.com/theodo-group/debug-that",
"keywords": [
"debugger",
"cli",
"nodejs",
"bun",
"ai-agents",
"lldb",
"dap",
"cdp",
"inspector"
],
"type": "module",
"bin": {
"debug-that": "./dist/main.js",
"dbg": "./dist/main.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "bun run src/main.ts",
"build": "bun run build.ts",
"test": "bun test tests/unit/ && bun test --concurrent tests/integration/",
"lint": "biome check .",
"format": "biome check --write .",
"typecheck": "tsc --noEmit -p tsconfig.check.json",
"build:java": "bun run src/main.ts install java",
"update-jsc-protocol": "curl -sL https://raw.githubusercontent.com/oven-sh/bun/main/packages/bun-inspector-protocol/src/protocol/jsc/index.d.ts -o src/cdp/jsc-protocol.d.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@types/bun": "latest",
"@vscode/debugprotocol": "^1.68.0",
"devtools-protocol": "^0.0.1581282",
"jest": "^30.3.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@jridgewell/trace-mapping": "^0.3.31",
"zod": "^4.0.0"
},
"module": "index.ts"
}