-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.64 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.64 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
60
61
62
63
64
65
66
67
68
69
70
{
"name": "camou",
"version": "0.9.2",
"description": "CLI and local daemon for driving Camoufox through Playwright",
"repository": {
"type": "git",
"url": "git+https://github.com/txchen/camoucli.git"
},
"homepage": "https://github.com/txchen/camoucli#readme",
"bugs": {
"url": "https://github.com/txchen/camoucli/issues"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"camou": "dist/cli/main.js",
"camou-daemon": "dist/daemon/main.js"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE*"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist",
"compatibility:matrix": "node scripts/generate-compatibility-matrix.mjs",
"compatibility:report": "node scripts/run-compatibility-report.mjs",
"dev": "tsx src/cli/main.ts",
"dev:daemon": "tsx src/daemon/main.ts",
"prepack": "npm run build",
"test": "vitest run",
"test:integration": "vitest run tests/*.integration.test.ts",
"test:watch": "vitest"
},
"keywords": [
"camoufox",
"playwright",
"firefox",
"cli",
"browser-automation"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"commander": "^14.0.0",
"extract-zip": "^2.0.1",
"playwright-core": "1.51.1",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"tsx": "^4.19.0",
"typescript": "^5.8.0",
"vitest": "^3.1.0"
}
}