-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.4 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.4 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "cleanclone",
"version": "0.0.3",
"description": "Inline DevTool-parsed CSS for any website and crawl it on the fly.",
"license": "MIT",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git@github.com:b10902118/cleanclone.git"
},
"homepage": "https://github.com/b10902118/cleanclone#readme",
"keywords": [
"css",
"html",
"web-crawler",
"inline",
"devtools-protocol"
],
"type": "module",
"dependencies": {
"chalk": "^5.6.2",
"chrome-remote-interface": "^0.33.3",
"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": "^8.5.6",
"postcss-var-replace": "^1.0.0",
"react": "^19.1.1",
"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",
"prettier": "^3.6.2",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
},
"scripts": {
"start": "tsx cdp.ts",
"cli": "tsx cli.tsx",
"format": "prettier --experimental-cli --write .",
"build": "tsc",
"prepare": "npm run build && chmod +x ./dist/cli.js",
"type-check": "tsc --noEmit"
},
"bin": {
"cleanclone": "dist/cli.js"
}
}