-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.69 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.69 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
{
"name": "@rspack/plugin-react-refresh",
"version": "1.6.2",
"repository": "https://github.com/rstackjs/rspack-plugin-react-refresh",
"license": "MIT",
"description": "React refresh plugin for Rspack",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./react-refresh": "./client/reactRefresh.js",
"./react-refresh-entry": "./client/reactRefreshEntry.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "rslib",
"dev": "rslib -w",
"lint": "biome check .",
"lint:write": "biome check . --write",
"prepare": "simple-git-hooks && npm run build",
"test": "rstest",
"release": "node ./scripts/release.js",
"bump": "npx bumpp --no-push --no-tag --no-commit"
},
"files": ["client", "dist"],
"simple-git-hooks": {
"pre-commit": "npx nano-staged"
},
"nano-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"biome check --write --no-errors-on-unmatched"
]
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@rslib/core": "^0.20.3",
"@rspack/core": "2.0.0-rc.0",
"@rstest/core": "^0.9.6",
"@types/node": "^24.12.2",
"bumpp": "^11.0.1",
"cac": "^7.0.0",
"cross-env": "^10.1.0",
"execa": "9.6.1",
"fs-extra": "11.3.4",
"nano-staged": "^0.9.0",
"react-refresh": "^0.18.0",
"semver": "7.7.4",
"simple-git-hooks": "^2.13.1",
"ts-node": "^10.9.2",
"typescript": "^6.0.2"
},
"peerDependencies": {
"react-refresh": ">=0.10.0 <1.0.0"
},
"packageManager": "pnpm@10.33.0",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}