forked from MercuryWorkshop/Scramjet-App
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 922 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 922 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
26
27
28
29
30
31
32
33
34
35
{
"name": "scramjet-demo",
"version": "2.0.0",
"description": "The demo application for Scramjet, a high-performance web proxy.",
"type": "module",
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"scripts": {
"start": "node src/index.js",
"format": "prettier --write .",
"lint": "eslint ./src/",
"lint:fix": "eslint ./src/ --fix"
},
"keywords": [
"proxy"
],
"author": "Mercury Workshop",
"license": "GNU AFFERO",
"dependencies": {
"fastify": "^5.4.0",
"@fastify/static": "^8.2.0",
"@mercuryworkshop/bare-mux": "^2.1.7",
"@mercuryworkshop/libcurl-transport": "^1.5.2",
"@mercuryworkshop/scramjet": "https://github.com/MercuryWorkshop/scramjet/releases/download/latest/mercuryworkshop-scramjet-2.0.0-alpha.tgz",
"@mercuryworkshop/wisp-js": "^0.4.1",
"ws": "^8.18.3"
},
"devDependencies": {
"eslint": "^9.13.0",
"prettier": "^3.3.3"
},
"packageManager": "pnpm@10.18.3"
}