-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.56 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
{
"name": "ghostframe",
"version": "0.1.0",
"description": "GhostFrame anti-detect browser platform",
"type": "module",
"scripts": {
"build": "tsc --noEmit && node scripts/gen-worker-embed.mjs && esbuild src/inject/index.ts --bundle --minify --format=iife --outfile=dist/inject.core.js && node scripts/gen-worker-embed.mjs dist/inject.core.js && esbuild src/inject/index.ts --bundle --minify --format=iife --outfile=dist/inject.js && esbuild src/browser/launcher.ts --bundle --platform=node --format=cjs --outfile=dist/launcher.cjs --external:electron --external:chromium-bidi --external:chromium-bidi/lib/cjs/cdp/CdpConnection --external:fsevents --loader:.node=empty && esbuild src/api/server.ts --bundle --platform=node --format=cjs --outfile=dist/api.cjs --external:electron --external:chromium-bidi --external:chromium-bidi/lib/cjs/cdp/CdpConnection --external:fsevents --loader:.node=empty",
"test": "vitest run",
"validate-profiles": "tsx scripts/validate-profiles.ts",
"launch": "tsx src/cli/index.ts",
"api": "tsx src/api/server.ts",
"gui": "electron gui/",
"lint": "eslint .",
"verify": "npm run build && npm test && npm run validate-profiles && npm run lint"
},
"dependencies": {
"esbuild": "^0.24.0",
"fastify": "^5.0.0",
"playwright": "^1.49.0",
"tsx": "^4.19.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.0.0",
"electron": "^33.0.0",
"eslint": "^10.8.1",
"jsdom": "^30.0.1",
"typescript": "^5.6.0",
"typescript-eslint": "^8.67.0",
"vitest": "^2.1.0"
}
}