-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.96 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "fimiproxy",
"version": "1.3.0",
"description": "Simple HTTP | HTTPS | WS | WSS reverse proxy",
"type": "module",
"author": {
"email": "ywordk@gmail.com",
"name": "softkave"
},
"license": "MIT",
"keywords": [
"reverse proxy",
"http proxy",
"https proxy",
"ws proxy",
"wss proxy",
"host header proxy",
"x-forwarded-host proxy"
],
"repository": {
"type": "git",
"url": "git+https://github.com/softkave/fimiproxy.git"
},
"bugs": {
"url": "https://github.com/softkave/fimiproxy/issues"
},
"homepage": "https://github.com/softkave/fimiproxy",
"engines": {
"node": ">=13"
},
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"bin": {
"fimiproxy": "build/src/bin.js"
},
"files": [
"build/src/{*.js,**/*.js}",
"build/src/{*.js.map,**/*.js.map}",
"build/src/{*.d.ts,**/*.d.ts}",
"!build/src/**/__tests__/**/*"
],
"scripts": {
"test": "cross-env NODE_TLS_REJECT_UNAUTHORIZED='0' vitest --config ./vitest.config.ts",
"lint": "gts lint",
"clean": "gts clean && rm -f tsconfig.tsbuildinfo",
"compile": "npm run clean && tsc",
"fix": "gts fix",
"pretest": "npm run compile",
"posttest": "npm run lint",
"start": "node build/src/start.js",
"publish:npm": "npm run clean && tsc && npm publish",
"show:packlist": "npm run clean && tsc && npm pack --dry-run"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/express": "^4.17.21",
"@types/node": "20.8.2",
"@types/node-forge": "^1.3.11",
"@types/ws": "^8.5.14",
"cross-env": "^7.0.3",
"express": "^4.18.3",
"gts": "^6.0.2",
"node-fetch": "^3.3.2",
"node-forge": "^1.3.1",
"typescript": "~5.7.3",
"vitest": "^3.0.5"
},
"dependencies": {
"http-graceful-shutdown": "^3.1.14",
"softkave-js-utils": "^0.16.3",
"type-fest": "^4.34.1",
"ws": "^8.18.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.9"
}
}