-
Notifications
You must be signed in to change notification settings - Fork 880
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.08 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.08 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "http-proxy-middleware",
"version": "4.0.0-beta.3",
"description": "The one-liner node.js proxy middleware for connect, express, next.js and more",
"keywords": [
"browser-sync",
"connect",
"cors",
"express",
"fastify",
"grunt-contrib-connect",
"gulp",
"hono",
"http",
"https",
"middleware",
"next.js",
"polka",
"proxy",
"reverse",
"websocket",
"ws"
],
"homepage": "https://github.com/chimurai/http-proxy-middleware#readme",
"bugs": {
"url": "https://github.com/chimurai/http-proxy-middleware/issues"
},
"license": "MIT",
"author": "Steven Chim",
"repository": {
"type": "git",
"url": "git+https://github.com/chimurai/http-proxy-middleware.git"
},
"files": [
"dist"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"publishConfig": {
"provenance": true
},
"scripts": {
"clean": "rm -rf dist coverage tsconfig.tsbuildinfo .eslintcache",
"install:all": "yarn && (cd examples && yarn)",
"lint": "yarn format && yarn eslint",
"lint:fix": "yarn format:fix && yarn eslint:fix",
"eslint": "eslint --cache '**/*.{js,ts,mjs,mts}'",
"eslint:fix": "yarn eslint --fix",
"format": "oxfmt --list-different \"**/*.{js,ts,mjs,mts,md,yml,json,html}\"",
"format:fix": "oxfmt --write \"**/*.{js,ts,mjs,mts,md,yml,json,html}\"",
"build": "tsc --build",
"test": "vitest run",
"test:types": "tsc --project tsconfig.test.json --noEmit",
"coverage": "vitest run --coverage",
"prepare": "husky && patch-package",
"prepack": "yarn clean && yarn test && yarn build",
"spellcheck": "npx --yes cspell --show-context --show-suggestions '**/*.*'"
},
"dependencies": {
"debug": "^4.4.3",
"httpxy": "^0.5.0",
"is-glob": "^4.0.3",
"is-plain-obj": "^4.1.0",
"micromatch": "^4.0.8"
},
"devDependencies": {
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@eslint/js": "10.0.1",
"@hono/node-server": "1.19.13",
"@types/debug": "4.1.13",
"@types/eslint": "9.6.1",
"@types/express": "5.0.6",
"@types/is-glob": "4.0.4",
"@types/micromatch": "4.0.10",
"@types/node": "24.10.2",
"@types/supertest": "7.2.0",
"@types/ws": "8.18.1",
"@vitest/coverage-v8": "4.1.4",
"body-parser": "2.2.2",
"eslint": "10.2.0",
"express": "5.2.1",
"get-port": "7.2.0",
"globals": "17.4.0",
"hono": "4.12.12",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"mockttp": "4.3.0",
"open": "11.0.0",
"oxfmt": "0.44.0",
"patch-package": "8.0.1",
"pkg-pr-new": "0.0.66",
"supertest": "7.2.2",
"typescript": "6.0.2",
"typescript-eslint": "8.58.1",
"vitest": "4.1.4",
"ws": "8.20.0"
},
"resolutions": {
"patch-package/**/tmp": "^0.2.4"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": "^22.12.0 || >=24.0.0"
}
}