-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.21 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.21 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
{
"name": "waves",
"version": "3.5.7",
"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",
"dev": "NODE_ENV=development node --max-old-space-size=2048 --turbo-fast-api-calls index.mjs",
"lint": "eslint .",
"build": "bun build.mjs",
"postinstall": "node scripts/patch.js"
},
"dependencies": {
"@mercuryworkshop/bare-mux": "^2.1.7",
"@mercuryworkshop/epoxy-transport": "^2.1.28",
"@mercuryworkshop/libcurl-transport": "^1.5.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.7",
"dotenv": "^16.4.5",
"express": "^5.0.0-beta.3",
"express-rate-limit": "^7.3.1",
"helmet": "^7.1.0",
"lru-cache": "^11.1.0",
"wisp-server-node": "1.1.7"
},
"devDependencies": {
"autoprefixer": "^10.4.22",
"cssnano": "^7.1.2",
"eslint": "^9.5.0",
"javascript-obfuscator": "^5.0.1",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"postcss-import": "^16.1.1"
}
}