-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.1 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.1 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
{
"name": "@rspack/dev-middleware",
"version": "2.0.1",
"description": "A development middleware for Rspack",
"keywords": [
"rspack",
"middleware",
"development"
],
"homepage": "https://github.com/rstackjs/rspack-dev-middleware",
"bugs": "https://github.com/rstackjs/rspack-dev-middleware/issues",
"repository": "rstackjs/rspack-dev-middleware",
"license": "MIT",
"author": "Tobias Koppers @sokra",
"type": "module",
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"build": "rslib --syntax es2023 && pnpm run build:types",
"build:types": "tsc --declaration --emitDeclarationOnly --outDir types && prettier \"types/**/*.ts\" --write",
"lint": "npm-run-all -l -p \"lint:**\"",
"lint:rslint": "rslint",
"lint:prettier": "prettier --cache --list-different .",
"lint:spelling": "cspell --cache --no-must-find-files --quiet \"**/*.*\"",
"lint:types": "tsc --pretty --noEmit",
"prepare": "pnpm run build",
"test": "rstest",
"test:watch": "rstest -w",
"bump": "npx bumpp"
},
"devDependencies": {
"@hapi/hapi": "^21.4.8",
"@hono/node-server": "^1.19.14",
"@rslib/core": "^0.21.1",
"@rslint/core": "^0.4.2",
"@rspack/core": "2.0.0-rc.2",
"@rstest/core": "0.9.7",
"@types/express": "^5.0.6",
"@types/node": "^22.3.0",
"@types/on-finished": "^2.3.5",
"@types/range-parser": "^1.2.7",
"connect-next": "^4.0.1",
"cspell": "^10.0.0",
"deepmerge": "^4.3.1",
"execa": "^9.6.1",
"express": "^5.2.1",
"finalhandler": "^2.1.1",
"hono": "^4.4.13",
"koa": "^3.2.0",
"memfs": "^4.57.1",
"mrmime": "^2.0.1",
"npm-run-all": "^4.1.5",
"on-finished": "^2.4.1",
"prettier": "^3.8.3",
"range-parser": "^1.2.1",
"router": "^2.2.0",
"supertest": "^7.2.2",
"typescript": "^6.0.2"
},
"peerDependencies": {
"@rspack/core": "^2.0.0-0"
},
"peerDependenciesMeta": {
"@rspack/core": {
"optional": true
}
},
"packageManager": "pnpm@10.21.0",
"engines": {
"node": "^20.19.0 || >=22.12.0"
}
}