-
Notifications
You must be signed in to change notification settings - Fork 188
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 898 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 898 Bytes
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
{
"name": "debugger-protocol-viewer",
"version": "1.0.0",
"private": true,
"license": "Apache2",
"author": "Google Inc.",
"repository": "git@github.com/chromedevtools/debugger-protocol-viewer.git",
"type": "module",
"scripts": {
"build": "node scripts/generate-stubs.js",
"prep": "bash prep-tot-protocol-files.sh",
"typecheck": "tsc --noEmit",
"test": "npm run typecheck && npm run test:node",
"test:node": "node --test test/**/*.test.js",
"test:unit": "node --test test/protocol-model.test.js",
"test:stubs": "node --test test/stubs.test.js",
"test:e2e": "node --test test/e2e.test.js",
"preflight": "npm run typecheck && npm test",
"serve": "node scripts/serve.js"
},
"devDependencies": {
"@types/node": "^26.5.0",
"devtools-protocol": "^0.0.1693794",
"typescript": "^7.0.2"
},
"engines": {
"node": ">=22.0.0"
}
}