-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
104 lines (104 loc) · 3.01 KB
/
package.json
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
{
"name": "@rsbuild/plugin-react-router",
"version": "0.0.1",
"description": "React plugin for Rsbuild",
"repository": {
"type": "git",
"url": "https://github.com/web-infra-dev/rsbuild",
"directory": "packages/plugin-react"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./templates/entry.client": {
"types": "./dist/templates/entry.client.d.ts",
"import": "./dist/templates/entry.client.js",
"require": "./dist/templates/entry.client.cjs"
},
"./templates/entry.server": {
"types": "./dist/templates/entry.server.d.ts",
"import": "./dist/templates/entry.server.js",
"require": "./dist/templates/entry.server.cjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"test:core": "vitest run -c ./vitest.config.ts",
"test:core:watch": "vitest watch -c ./vitest.config.ts"
},
"dependencies": {
"@babel/core": "^7.26.3",
"@babel/generator": "^7.26.3",
"@babel/parser": "^7.26.3",
"@babel/traverse": "^7.26.3",
"@babel/types": "^7.26.3",
"@mjackson/node-fetch-server": "^0.3.0",
"@react-router/node": "7.0.2",
"@rspack/plugin-react-refresh": "^1.0.1",
"babel-dead-code-elimination": "^1.0.8",
"esbuild": "^0.24.2",
"execa": "^9.5.2",
"isbot": "5.1.18",
"jiti": "^2.4.2",
"jsesc": "^3.1.0",
"pathe": "^1.1.2",
"react-refresh": "^0.16.0",
"rspack-plugin-virtual-module": "^0.1.13"
},
"devDependencies": {
"@react-router/dev": "^7.1.3",
"@react-router/node": "^7.1.3",
"@rsbuild/config": "workspace:*",
"@rsbuild/core": "^1.2.3",
"@rslib/core": "0.1.3",
"@rspack/core": "^1.1.6",
"@types/babel__core": "^7.6.8",
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.6",
"@types/jsesc": "^3.0.3",
"@types/node": "^22.10.1",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"jiti": "^2.4.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.1.3",
"react-router-dom": "^7.1.3",
"typescript": "^5.7.2",
"vitest": "^3.0.5"
},
"peerDependencies": {
"@rsbuild/core": "1.x"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
},
"packageManager": "[email protected]+sha512.1f79bc245a66eb0b07c5d4d83131240774642caaa86ef7d0434ab47c0d16f66b04e21e0c086eb61e62c77efc4d7f7ec071afad3796af64892fae66509173893a",
"pnpm": {
"overrides": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.1.3",
"react-router-dom": "^7.1.3",
"@react-router/node": "^7.1.3",
"@react-router/dev": "^7.1.3",
"@types/express": "^5.0.0"
}
}
}