-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.92 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.92 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
{
"name": "@ghax/cli",
"version": "0.0.1",
"description": "Attach to your real Chrome or Edge via CDP and drive it — tabs, clicks, a11y snapshots, plus MV3 extension internals.",
"license": "MIT",
"type": "module",
"bin": {
"ghax": "./bin/ghax"
},
"scripts": {
"daemon": "node --enable-source-maps dist/ghax-daemon.mjs",
"build": "esbuild src/daemon.ts --bundle --platform=node --format=esm --outfile=dist/ghax-daemon.mjs --external:electron --external:chromium-bidi --external:@playwright/test --external:playwright --external:playwright-core --external:source-map --legal-comments=none",
"build:rust": "cargo build --release --manifest-path crates/cli/Cargo.toml",
"build:all": "npm run build:rust && npm run build",
"typecheck": "tsc --noEmit",
"test:smoke": "tsx test/smoke.ts",
"test:capture-bodies": "tsx test/capture-bodies-smoke.ts",
"test:cross-browser": "tsx test/cross-browser.ts",
"test:benchmark": "tsx test/benchmark.ts",
"test:perf": "tsx test/perf-bench.ts",
"install-link": "bash scripts/install-link.sh",
"uninstall-link": "rm -rf ~/.local/bin/ghax ~/.local/share/ghax && echo 'unlinked ~/.local/bin/ghax and removed ~/.local/share/ghax/'",
"install-release": "bash scripts/install-release.sh",
"release": "bash scripts/release.sh"
},
"dependencies": {
"playwright": "^1.58.2",
"source-map": "^0.7.6"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"cdp",
"chrome",
"edge",
"browser",
"automation",
"playwright",
"chrome-extension",
"mv3",
"cli",
"qa",
"ai-agent"
],
"files": [
"bin/",
"dist/ghax-daemon.mjs",
"src/",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/kepptic/ghax.git"
},
"devDependencies": {
"@types/node": "^25.6.0",
"esbuild": "^0.25.3",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
}
}