-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1 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
37
38
39
40
41
{
"type": "module",
"dependencies": {
"@inkjs/ui": "^2.0.0",
"ansi-colors": "^4.1.3",
"chalk": "^5.6.2",
"chrome-remote-interface": "^0.33.3",
"cli-progress": "^3.12.0",
"css-what": "^7.0.0",
"escape-html": "^1.0.3",
"escape-string-regexp": "^5.0.0",
"ink": "^6.3.0",
"jsdom": "^26.1.0",
"postcss-var-replace": "^1.0.0",
"react": "^19.1.1",
"tsx": "^4.20.5",
"yargs": "^18.0.0"
},
"devDependencies": {
"@types/chrome-remote-interface": "^0.31.14",
"@types/cli-progress": "^3.11.6",
"@types/jsdom": "^21.1.7",
"@types/node": "^24.3.1",
"@types/react": "^19.1.13",
"@types/yargs": "^17.0.33",
"postcss": "^8.5.6",
"postcss-css-variables": "^0.19.0",
"prettier": "^3.6.2",
"typescript": "^5.9.2"
},
"scripts": {
"start": "tsx cdp.ts",
"cli": "tsx cli.tsx",
"format": "prettier --experimental-cli --write .",
"build": "tsc",
"type-check": "tsc --noEmit"
},
"bin": {
"crawler": "./cli.tsx"
}
}