@roblourens/dap-cli 0.1.0 → 0.3.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 +37 -8
- package/dist/index.js +1779 -183
- package/dist/index.js.map +1 -1
- package/package.json +10 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@roblourens/dap-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -42,26 +42,33 @@
|
|
|
42
42
|
"scripts": {
|
|
43
43
|
"build": "tsup",
|
|
44
44
|
"generate:dap-commands": "node --experimental-strip-types src/generator/dapCommandRegistryGenerator.ts",
|
|
45
|
-
"setup-adapters": "node --experimental-
|
|
45
|
+
"setup-adapters": "node --experimental-transform-types scripts/setup-adapters.ts",
|
|
46
46
|
"typecheck": "tsc --noEmit",
|
|
47
47
|
"test": "vitest run",
|
|
48
48
|
"test:smoke:chrome": "DAP_CLI_RUN_BROWSER_SMOKES=1 vitest run tests/integration/jsDebugAdapter.test.ts",
|
|
49
49
|
"test:smoke:handoff": "DAP_CLI_RUN_CHROME_PLAYWRIGHT_HANDOFF=1 vitest run tests/integration/playwrightInterop.test.ts",
|
|
50
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
51
|
"lint": "eslint src tests scripts *.config.ts",
|
|
52
|
-
"check": "
|
|
52
|
+
"check:pack": "DAP_CLI_RUN_PACKAGING=1 vitest run --no-file-parallelism tests/packaging/",
|
|
53
|
+
"check": "npm run typecheck && npm run lint && npm test && npm run build && npm run check:pack",
|
|
53
54
|
"prepublishOnly": "npm run check"
|
|
54
55
|
},
|
|
55
56
|
"dependencies": {
|
|
56
57
|
"@vscode/debugprotocol": "^1.68.0",
|
|
57
58
|
"commander": "^14.0.1",
|
|
58
59
|
"jsonc-parser": "^3.3.1",
|
|
60
|
+
"proper-lockfile": "^4.1.2",
|
|
61
|
+
"tar": "^7.5.15",
|
|
62
|
+
"undici": "^7.26.0",
|
|
63
|
+
"yauzl": "^3.3.1",
|
|
59
64
|
"zod": "^4.1.12"
|
|
60
65
|
},
|
|
61
66
|
"devDependencies": {
|
|
62
67
|
"@eslint/js": "^9.38.0",
|
|
63
68
|
"@playwright/test": "^1.59.1",
|
|
64
69
|
"@types/node": "^24.9.1",
|
|
70
|
+
"@types/proper-lockfile": "^4.1.4",
|
|
71
|
+
"@types/yauzl": "^2.10.3",
|
|
65
72
|
"eslint": "^9.38.0",
|
|
66
73
|
"tsup": "^8.5.0",
|
|
67
74
|
"typescript": "^5.9.3",
|