-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.97 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 2.97 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
{
"name": "@rspack/dev-server",
"version": "2.0.0-beta.4",
"description": "Development server for rspack",
"homepage": "https://rspack.rs",
"bugs": "https://github.com/rstackjs/rspack-dev-server/issues",
"repository": {
"type": "git",
"url": "https://github.com/rstackjs/rspack-dev-server"
},
"license": "MIT",
"type": "module",
"exports": {
".": "./dist/index.js",
"./client/*.js": "./client/*.js",
"./client/*": "./client/*.js",
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"files": [
"dist",
"client"
],
"scripts": {
"build": "rslib",
"bump": "npx bumpp",
"dev": "rslib -w",
"format": "prettier --write .",
"lint": "biome check .",
"lint:write": "biome check . --write",
"prettier:ci": "prettier --check .",
"test": "pnpm run test:install && pnpm run build && rstest",
"test:install": "cross-env ./node_modules/.bin/puppeteer browsers install chrome"
},
"simple-git-hooks": {
"pre-commit": "npx nano-staged"
},
"nano-staged": {
"*.{yaml,yml,json,md,json5}": [
"npm rum format"
],
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"npm run format",
"biome lint --write --no-errors-on-unmatched"
]
},
"dependencies": {
"@types/connect-history-api-fallback": "^1.5.4",
"@types/serve-index": "^1.9.4",
"@types/serve-static": "^2.2.0",
"@types/ws": "^8.18.1",
"chokidar": "^3.6.0",
"connect-history-api-fallback": "^2.0.0",
"connect-next": "^4.0.0",
"http-proxy-middleware": "^3.0.5",
"ipaddr.js": "^2.3.0",
"serve-index": "^1.9.2",
"serve-static": "^2.2.1",
"webpack-dev-middleware": "^7.4.5",
"ws": "^8.19.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@hono/node-server": "^1.19.11",
"@rslib/core": "^0.19.6",
"@rspack/core": "2.0.0-beta.5",
"@rspack/plugin-react-refresh": "1.6.1",
"@rstest/core": "^0.9.0",
"@types/mime-types": "3.0.1",
"@types/node": "^24.12.0",
"@types/node-forge": "^1.3.14",
"@types/trusted-types": "^2.0.7",
"@types/ws": "8.18.1",
"cross-env": "^10.1.0",
"css-loader": "^7.1.4",
"express": "^5.2.1",
"hono": "^4.12.5",
"http-compression": "^1.1.2",
"http-proxy": "^1.18.1",
"launch-editor": "^2.13.1",
"nano-staged": "^0.9.0",
"open": "^11.0.0",
"p-retry": "^7.1.1",
"prettier": "3.8.1",
"puppeteer": "^24.38.0",
"react-refresh": "0.18.0",
"require-from-string": "^2.0.2",
"selfsigned": "^5.5.0",
"simple-git-hooks": "^2.13.1",
"style-loader": "^4.0.0",
"typescript": "^5.9.3",
"webpack-dev-middleware": "^7.4.5"
},
"peerDependencies": {
"@rspack/core": "^2.0.0-0",
"selfsigned": "^5.0.0"
},
"peerDependenciesMeta": {
"selfsigned": {
"optional": true
}
},
"packageManager": "pnpm@10.31.0",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}