-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.43 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
{
"name": "cpp-debugger-cli",
"version": "0.2.0",
"description": "Agent-friendly JSON CLI for Debug Adapter Protocol sessions",
"type": "module",
"private": true,
"license": "MIT",
"engines": { "node": ">=22" },
"bin": { "cpp-debugger-cli": "dist/cli.js" },
"files": ["dist", "skill", "README.md", "README.zh-TW.md", "LICENSE"],
"repository": {
"type": "git",
"url": "git+https://github.com/Lin-WeiChen-Taiwan/cpp-debugger-cli.git"
},
"homepage": "https://github.com/Lin-WeiChen-Taiwan/cpp-debugger-cli#readme",
"bugs": {
"url": "https://github.com/Lin-WeiChen-Taiwan/cpp-debugger-cli/issues"
},
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true});require('node:fs').rmSync('.test-dist',{recursive:true,force:true})\"",
"build": "npm run clean && tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"build:tests": "tsc -p tsconfig.test.json",
"test": "npm run build:tests && node --test \".test-dist/tests/unit/*.test.js\"",
"test:integration": "npm run build && npm run build:tests && node --test \".test-dist/tests/integration/*.test.js\"",
"verify": "npm run typecheck && npm run test && npm run test:integration && npm run build && npm pack --dry-run"
},
"dependencies": {
"@vscode/debugprotocol": "^1.68.0",
"ajv": "^8.20.0"
},
"devDependencies": {
"@types/node": "^25.0.0",
"typescript": "^6.0.0"
}
}