-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 754 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 754 Bytes
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
{
"name": "bumblebee",
"version": "1.0.0",
"description": "Standalone Camoufox Remote Anti-Detect Browser Server (Pure JS/TS)",
"main": "src/server.ts",
"type": "module",
"scripts": {
"dev": "bun run --cwd dashboard build --watch & bun run --watch src/server.ts",
"dev:server": "bun run --watch src/server.ts",
"dev:dashboard": "bun run --cwd dashboard dev",
"build:dashboard": "bun run --cwd dashboard build",
"build": "bun run --cwd dashboard build",
"start": "bun run src/server.ts",
"test": "bun test",
"fetch": "bun x camoufox-js fetch"
},
"dependencies": {
"camoufox-js": "^0.12.0",
"hono": "^4.13.3"
},
"devDependencies": {
"@types/bun": "^1.4.0",
"@types/node": "^26.2.0"
}
}