debug-run 0.1.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.
- package/README.md +357 -0
- package/dist/index.cjs +7129 -0
- package/package.json +49 -0
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "debug-run",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "CLI tool enabling AI agents to programmatically debug code via DAP",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.cjs",
|
|
7
|
+
"bin": {
|
|
8
|
+
"debug-run": "dist/index.cjs"
|
|
9
|
+
},
|
|
10
|
+
"scripts": {
|
|
11
|
+
"prepare": "npm run build",
|
|
12
|
+
"build": "node scripts/build.mjs",
|
|
13
|
+
"dev": "tsx ./src/index.ts",
|
|
14
|
+
"test": "vitest",
|
|
15
|
+
"test:run": "vitest run",
|
|
16
|
+
"typecheck": "tsc --noEmit"
|
|
17
|
+
},
|
|
18
|
+
"dependencies": {
|
|
19
|
+
"@vscode/debugprotocol": "^1.65.0",
|
|
20
|
+
"chalk": "^5.0.0",
|
|
21
|
+
"commander": "^12.0.0",
|
|
22
|
+
"glob": "^10.0.0"
|
|
23
|
+
},
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@types/node": "^20.0.0",
|
|
26
|
+
"bun-types": "^1.0.0",
|
|
27
|
+
"esbuild": "^0.27.2",
|
|
28
|
+
"tsx": "^4.21.0",
|
|
29
|
+
"typescript": "^5.3.0",
|
|
30
|
+
"vitest": "^1.0.0"
|
|
31
|
+
},
|
|
32
|
+
"engines": {
|
|
33
|
+
"node": ">=18.0.0"
|
|
34
|
+
},
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "git+https://github.com/Chris-Cullins/debug-run.git"
|
|
38
|
+
},
|
|
39
|
+
"keywords": [
|
|
40
|
+
"debug",
|
|
41
|
+
"dap",
|
|
42
|
+
"debugger",
|
|
43
|
+
"cli",
|
|
44
|
+
"ai",
|
|
45
|
+
"agent"
|
|
46
|
+
],
|
|
47
|
+
"author": "",
|
|
48
|
+
"license": "MIT"
|
|
49
|
+
}
|