-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 979 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 979 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
30
31
32
33
34
35
36
37
38
39
40
{
"name": "ts-cdp",
"version": "1.0.0",
"description": "A TypeScript library for Chrome DevTools Protocol (CDP) operations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"example": "ts-node examples/basic-usage.ts",
"lint": "eslint src/**/*.ts",
"clean": "rm -rf dist",
"server": "ts-node src/http/index.ts"
},
"keywords": [
"chrome",
"cdp",
"devtools-protocol",
"automation"
],
"author": "",
"license": "MIT",
"dependencies": {
"chrome-remote-interface": "^0.33.3",
"express": "^5.2.1"
},
"devDependencies": {
"@types/chrome-remote-interface": "^0.33.0",
"@types/express": "^5.0.6",
"@types/node": "^25.0.7",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"eslint": "^9.39.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=16.0.0"
}
}