-
-
Notifications
You must be signed in to change notification settings - Fork 238
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.42 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.42 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
{
"name": "@vitejs/plugin-rsc",
"version": "0.5.23",
"description": "React Server Components (RSC) support for Vite.",
"keywords": [
"react",
"react-server-components",
"rsc",
"vite",
"vite-plugin"
],
"homepage": "https://github.com/vitejs/vite-plugin-react/tree/main/packages/plugin-rsc",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vitejs/vite-plugin-react.git",
"directory": "packages/plugin-rsc"
},
"files": [
"dist",
"types"
],
"type": "module",
"exports": {
"./package.json": "./package.json",
"./types": "./types/index.d.ts",
".": "./dist/index.js",
"./transforms": "./dist/transforms/index.js",
"./*": "./dist/*.js"
},
"scripts": {
"test": "vitest",
"test-e2e": "playwright test --project=chromium",
"test-e2e-ci": "playwright test",
"tsc": "tsc -b ./tsconfig.json ./e2e/tsconfig.json ./examples/*/tsconfig.json",
"tsc-dev": "pnpm tsc --watch --preserveWatchOutput",
"dev": "tsdown --sourcemap --watch src",
"build": "tsdown",
"prepack": "tsdown"
},
"dependencies": {
"@rolldown/pluginutils": "1.0.0-rc.13",
"es-module-lexer": "^2.0.0",
"estree-walker": "^3.0.3",
"magic-string": "^0.30.21",
"srvx": "^0.11.15",
"strip-literal": "^3.1.0",
"turbo-stream": "^3.2.0",
"vitefu": "^1.1.3"
},
"devDependencies": {
"@hiogawa/utils": "^1.7.0",
"@playwright/test": "^1.59.1",
"@tsconfig/strictest": "^2.0.8",
"@types/estree": "^1.0.8",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "workspace:*",
"@vitejs/test-dep-cjs-and-esm": "./test-dep/cjs-and-esm",
"@vitejs/test-dep-cjs-falsy-primitive": "./test-dep/cjs-falsy-primitive",
"picocolors": "^1.1.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-server-dom-webpack": "^19.2.5",
"tinyexec": "^1.0.4",
"tsdown": "^0.21.7"
},
"peerDependencies": {
"react": "*",
"react-dom": "*",
"react-server-dom-webpack": "*",
"vite": "*"
},
"peerDependenciesMeta": {
"react-server-dom-webpack": {
"optional": true
}
},
"compatiblePackages": {
"schemaVersion": 1,
"rolldown": {
"type": "incompatible",
"reason": "Uses Vite-specific APIs"
},
"rollup": {
"type": "incompatible",
"reason": "Uses Vite-specific APIs"
}
}
}