-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.27 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.27 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
{
"name": "rsbuild-plugin-rsc",
"version": "0.0.3",
"description": "React server component plugin for Rsbuild",
"repository": {
"type": "git",
"url": "git+https://github.com/rstackjs/rsbuild-plugin-rsc.git",
"directory": "packages/plugin-rsc"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rslib",
"dev": "rslib -w",
"test": "cd ./e2e && pnpm test:all",
"check": "biome check --write"
},
"devDependencies": {
"@biomejs/biome": "2.4.11",
"@playwright/test": "^1.59.1",
"@rsbuild/core": "^2.0.0-rc.2",
"@rslib/core": "0.21.0",
"@rstest/core": "^0.9.7",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript/native-preview": "7.0.0-dev.20260412.1",
"fs-extra": "^11.3.4",
"playwright": "^1.59.1",
"prebundle": "1.6.4",
"react-server-dom-rspack": "0.0.2",
"rsbuild-plugin-arethetypeswrong": "^0.3.1"
},
"peerDependencies": {
"@rsbuild/core": "^2.0.0-0",
"react-server-dom-rspack": "*"
}
}