-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
75 lines (75 loc) · 2.02 KB
/
package.json
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@mercuryworkshop/scramjet",
"version": "1.0.2-dev",
"description": "An experimental web proxy that aims to be the successor to Ultraviolet",
"main": "./lib/index.cjs",
"types": "./lib/index.d.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/MercuryWorkshop/scramjet"
},
"scripts": {
"build": "rspack build --mode production",
"rewriter:build": "cd rewriter && bash build.sh && cd ..",
"dev": "node server.js",
"prepack": "RELEASE=1 npm run rewriter:build && npm run build",
"pub": "npm publish --no-git-checks --access public",
"format": "prettier --config .prettierrc.js --write .",
"lint": "eslint ./src/",
"lint:fix": "eslint ./src/ --fix",
"test": "npx playwright test"
},
"files": [
"dist/*.js",
"dist/*.js.map",
"lib"
],
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@fastify/static": "^8.0.2",
"@mercuryworkshop/bare-as-module3": "^2.2.5",
"@mercuryworkshop/epoxy-transport": "^2.1.26",
"@mercuryworkshop/libcurl-transport": "^1.3.12",
"@nebula-services/bare-server-node": "^2.0.4",
"@rsdoctor/rspack-plugin": "^0.4.8",
"@rspack/cli": "^1.0.14",
"@rspack/core": "^1.0.14",
"@types/eslint": "^9.6.1",
"@types/estree": "^1.0.6",
"@types/node": "^22.9.0",
"@types/serviceworker": "^0.0.102",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"dotenv": "^16.4.5",
"eslint": "^9.14.0",
"fastify": "^5.1.0",
"prettier": "^3.3.3",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"wisp-server-node": "^1.1.7"
},
"dependencies": {
"@mercuryworkshop/bare-mux": "^2.1.6",
"dom-serializer": "^2.0.0",
"domhandler": "^5.0.3",
"domutils": "^3.1.0",
"htmlparser2": "^9.1.0",
"parse-domain": "^8.2.2",
"set-cookie-parser": "^2.7.1"
},
"optionalDependencies": {
"@playwright/test": "^1.48.1",
"playwright": "^1.48.1"
},
"pnpm": {
"ignoredOptionalDependencies": [
"@playwright/test",
"playwright"
]
}
}