-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 970 Bytes
/
package.json
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
{
"name": "camoufox-js",
"version": "0.2.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc && npm run copy-files",
"test": "echo \"Error: no test specified\" && exit 1",
"copy-files": "cp -r src/data-files dist/data-files"
},
"bin": "dist/__main__.js",
"files": [
"dist"
],
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"description": "Experimental JS port of Camoufox for Python.",
"packageManager": "[email protected]",
"dependencies": {
"adm-zip": "^0.5.16",
"commander": "^13.1.0",
"fingerprint-generator": "^2.1.62",
"impit": "^0.2.1",
"js-yaml": "^4.1.0",
"language-tags": "^2.0.1",
"maxmind": "^4.3.24",
"playwright": "^1.50.1",
"progress": "^2.0.3",
"sqlite3": "^5.1.7",
"ua-parser-js": "^2.0.2",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/node": "^22.13.2",
"rimraf": "^6.0.1"
}
}