-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.48 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.48 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
49
50
51
52
53
54
55
{
"name": "httpxy",
"version": "0.5.1",
"description": "A full-featured HTTP proxy for Node.js.",
"license": "MIT",
"repository": "unjs/httpxy",
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs"
},
"scripts": {
"build": "obuild",
"dev": "vitest",
"lint": "oxlint . && oxfmt --check",
"fmt": "oxlint . --fix && oxfmt",
"prepack": "pnpm run build",
"release": "pnpm test && pnpm build && changelogen --release && npm publish && git push --follow-tags",
"test": "pnpm lint && pnpm typecheck && vitest run --coverage",
"typecheck": "tsgo --noEmit"
},
"devDependencies": {
"@types/async": "^3.2.25",
"@types/concat-stream": "^2.0.3",
"@types/express": "^5.0.6",
"@types/node": "^25.6.0",
"@types/semver": "^7.7.1",
"@types/sse": "^0.0.0",
"@types/ws": "^8.18.1",
"@typescript/native-preview": "^7.0.0-dev.20260421.1",
"@vitest/coverage-v8": "^4.1.5",
"async": "^3.2.6",
"changelogen": "^0.6.2",
"concat-stream": "^2.0.0",
"eslint-config-unjs": "^0.6.2",
"expect.js": "^0.3.1",
"obuild": "^0.4.33",
"ofetch": "^1.5.1",
"oxfmt": "^0.46.0",
"oxlint": "^1.61.0",
"semver": "^7.7.4",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"sse": "^0.0.8",
"typescript": "^6.0.3",
"undici": "^8.1.0",
"vitest": "^4.1.5",
"ws": "^8.20.0"
},
"packageManager": "pnpm@10.33.0"
}