debug-that 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +132 -0
  3. package/dist/main.js +14188 -0
  4. package/package.json +56 -0
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "debug-that",
3
+ "version": "0.2.0",
4
+ "description": "Node.js Debugger CLI for AI Agents",
5
+ "license": "MIT",
6
+ "author": "Theodo Group",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/theodo-group/debug-that.git"
10
+ },
11
+ "homepage": "https://github.com/theodo-group/debug-that",
12
+ "keywords": [
13
+ "debugger",
14
+ "cli",
15
+ "nodejs",
16
+ "bun",
17
+ "ai-agents",
18
+ "lldb",
19
+ "dap",
20
+ "cdp",
21
+ "inspector"
22
+ ],
23
+ "type": "module",
24
+ "bin": {
25
+ "debug-that": "./dist/main.js",
26
+ "dbg": "./dist/main.js"
27
+ },
28
+ "files": [
29
+ "dist",
30
+ "README.md",
31
+ "LICENSE"
32
+ ],
33
+ "scripts": {
34
+ "dev": "bun run src/main.ts",
35
+ "build": "bun build src/main.ts --outdir dist --target=bun",
36
+ "test": "bun test tests/unit/ && bun test --concurrent tests/integration/",
37
+ "lint": "biome check .",
38
+ "format": "biome check --write .",
39
+ "typecheck": "tsc --noEmit -p tsconfig.check.json",
40
+ "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"
41
+ },
42
+ "devDependencies": {
43
+ "@biomejs/biome": "^2.3.14",
44
+ "@types/bun": "latest",
45
+ "@vscode/debugprotocol": "^1.68.0",
46
+ "devtools-protocol": "^0.0.1581282"
47
+ },
48
+ "peerDependencies": {
49
+ "typescript": "^5"
50
+ },
51
+ "dependencies": {
52
+ "@jridgewell/trace-mapping": "^0.3.31",
53
+ "zod": "^4.0.0"
54
+ },
55
+ "module": "index.ts"
56
+ }