@roblourens/dap-cli 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/package.json ADDED
@@ -0,0 +1,71 @@
1
+ {
2
+ "name": "@roblourens/dap-cli",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "description": "Agent-facing Debug Adapter Protocol CLI. Control DAP debug sessions, set breakpoints, and inspect paused programs from shell commands.",
9
+ "bin": {
10
+ "dap-cli": "dist/index.js"
11
+ },
12
+ "license": "MIT",
13
+ "author": "Rob Lourens <roblourens@gmail.com>",
14
+ "homepage": "https://github.com/roblourens/dap-cli#readme",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/roblourens/dap-cli.git"
18
+ },
19
+ "bugs": {
20
+ "url": "https://github.com/roblourens/dap-cli/issues"
21
+ },
22
+ "keywords": [
23
+ "debug",
24
+ "dap",
25
+ "debug-adapter-protocol",
26
+ "debugger",
27
+ "cli",
28
+ "agent",
29
+ "ai",
30
+ "js-debug",
31
+ "debugpy",
32
+ "playwright"
33
+ ],
34
+ "files": [
35
+ "dist/",
36
+ "README.md",
37
+ "LICENSE"
38
+ ],
39
+ "engines": {
40
+ "node": ">=22"
41
+ },
42
+ "scripts": {
43
+ "build": "tsup",
44
+ "generate:dap-commands": "node --experimental-strip-types src/generator/dapCommandRegistryGenerator.ts",
45
+ "setup-adapters": "node --experimental-strip-types scripts/setup-adapters.ts",
46
+ "typecheck": "tsc --noEmit",
47
+ "test": "vitest run",
48
+ "test:smoke:chrome": "DAP_CLI_RUN_BROWSER_SMOKES=1 vitest run tests/integration/jsDebugAdapter.test.ts",
49
+ "test:smoke:handoff": "DAP_CLI_RUN_CHROME_PLAYWRIGHT_HANDOFF=1 vitest run tests/integration/playwrightInterop.test.ts",
50
+ "test:smoke": "DAP_CLI_RUN_BROWSER_SMOKES=1 DAP_CLI_RUN_CHROME_PLAYWRIGHT_HANDOFF=1 vitest run tests/integration/jsDebugAdapter.test.ts tests/integration/playwrightInterop.test.ts",
51
+ "lint": "eslint src tests scripts *.config.ts",
52
+ "check": "npm run typecheck && npm run lint && npm test && npm run build",
53
+ "prepublishOnly": "npm run check"
54
+ },
55
+ "dependencies": {
56
+ "@vscode/debugprotocol": "^1.68.0",
57
+ "commander": "^14.0.1",
58
+ "jsonc-parser": "^3.3.1",
59
+ "zod": "^4.1.12"
60
+ },
61
+ "devDependencies": {
62
+ "@eslint/js": "^9.38.0",
63
+ "@playwright/test": "^1.59.1",
64
+ "@types/node": "^24.9.1",
65
+ "eslint": "^9.38.0",
66
+ "tsup": "^8.5.0",
67
+ "typescript": "^5.9.3",
68
+ "typescript-eslint": "^8.46.2",
69
+ "vitest": "^3.2.4"
70
+ }
71
+ }