-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.43 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
{
"name": "@refactorjs/http-proxy",
"version": "0.2.11",
"description": "http-proxy alternative",
"repository": {
"type": "git",
"url": "git+https://github.com/refactorjs/http-proxy.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"test": "vitest run"
},
"dependencies": {
"requires-port": "^1.0.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/requires-port": "^1.0.3",
"async": "^3.2.5",
"concat-stream": "^2.0.0",
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.2",
"sse": "0.0.8",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vitest": "^1.0.4",
"ws": "^8.15.1"
},
"engines": {
"node": ">=18.0.0"
},
"bugs": {
"url": "https://github.com/refactorjs/http-proxy/issues"
},
"homepage": "https://github.com/refactorjs/http-proxy#readme",
"keywords": [
"http",
"proxy",
"connect",
"reverse",
"https",
"http-proxy",
"node-http-proxy",
"http-proxy",
"alternative"
]
}