-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.73 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
{
"name": "meteorproxy",
"version": "1.0.7-beta.1",
"description": "The modern interception proxy you've been waiting for",
"type": "module",
"main": "./lib/index.cjs",
"types": "./lib/index.d.js",
"repository": {
"type": "git",
"url": "git+https://github.com/z1g-project/meteor.git"
},
"scripts": {
"build": "tsx build.ts",
"demo": "tsx server.ts",
"demo:lite": "tsx server.ts --no-build",
"rspack:build": "tsx rspack.ts",
"release": "tsc && biome check . --write && npm run build && npm publish --access public",
"check": "biome check . --write",
"prepare": "npm run check",
"prepack": "npm run build",
"typecheck": "tsc"
},
"files": [
"dist",
"lib",
"src/types.d.ts"
],
"keywords": [
"proxy",
"interception",
"http-proxy"
],
"author": "z1g Project",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@fastify/static": "^8.0.1",
"@mercuryworkshop/epoxy-transport": "^2.1.13",
"@types/estraverse": "^5.1.7",
"@types/node": "^22.7.5",
"@types/set-cookie-parser": "^2.4.10",
"consola": "^3.2.3",
"esbuild-plugin-copy": "^2.1.1",
"fastify": "^5.0.0",
"prettier": "^3.3.3",
"tsx": "^4.19.1",
"typescript": "^5.6.3"
},
"dependencies": {
"@mercuryworkshop/bare-mux": "^2.0.9",
"@mercuryworkshop/wisp-js": "^0.3.2",
"@types/estree": "^1.0.6",
"@webreflection/idb-map": "^0.3.2",
"astring": "^1.9.0",
"cookie-es": "^1.2.2",
"dom-serializer": "^2.0.0",
"domhandler": "^5.0.3",
"domutils": "^3.1.0",
"esbuild": "^0.24.0",
"estraverse": "^5.3.0",
"htmlparser2": "^9.1.0",
"meriyah": "^6.0.2",
"rimraf": "^6.0.1",
"set-cookie-parser": "^2.7.0"
}
}