forked from l4uy/waves
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.4 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.4 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
{
"name": "waves",
"version": "3.4.2",
"description": "A really cool web-proxy",
"type": "module",
"packageManager": "bun@latest",
"engines": {
"bun": ">=1.0.0",
"node": ">=18.0.0"
},
"author": {
"name": "sent",
"email": "sentttt@proton.me"
},
"scripts": {
"start": "NODE_ENV=production node --max-old-space-size=512 --turbo-fast-api-calls index.mjs",
"bridge": "NODE_ENV=production node --max-old-space-size=4096 --turbo-fast-api-calls bridge-server.mjs",
"dev": "NODE_ENV=development node --max-old-space-size=2048 --turbo-fast-api-calls index.mjs",
"lint": "eslint .",
"build": "bun build.mjs"
},
"dependencies": {
"@mercuryworkshop/bare-mux": "^2.1.7",
"@mercuryworkshop/epoxy-transport": "^2.1.28",
"@mercuryworkshop/libcurl-transport": "^1.5.0",
"@titaniumnetwork-dev/ultraviolet": "^3.2.10",
"compression": "^1.7.4",
"dotenv": "^16.4.5",
"express": "^5.0.0-beta.3",
"express-rate-limit": "^7.3.1",
"helmet": "^7.1.0",
"html-rewriter-wasm": "^0.4.1",
"lru-cache": "^11.1.0",
"undici": "^6.19.2",
"wisp-server-node": "1.1.7",
"ws": "^8.18.3"
},
"devDependencies": {
"autoprefixer": "^10.4.22",
"cssnano": "^7.1.2",
"eslint": "^9.5.0",
"html-minifier": "^4.0.0",
"javascript-obfuscator": "^5.0.1",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"postcss-import": "^16.1.1"
}
}