-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.16 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
{
"name": "@vp-tw/react-live-workspace",
"private": true,
"type": "module",
"packageManager": "pnpm@11.25.0",
"engines": {
"node": "^22.22.1 || ^24.11.0 || >=26.0.0",
"pnpm": ">=11"
},
"scripts": {
"build": "corepack pnpm --filter @vp-tw/react-live build",
"build:examples": "corepack pnpm --workspace-concurrency=1 --filter './examples/*' build",
"build:pages": "corepack pnpm build && corepack pnpm build:examples && node scripts/build-pages.mjs",
"check": "corepack pnpm typecheck && corepack pnpm test && corepack pnpm build:examples",
"test": "corepack pnpm --filter @vp-tw/react-live test",
"typecheck": "corepack pnpm build && corepack pnpm -r typecheck"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^24.10.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"@vitejs/plugin-react": "^6.0.1",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-live": "^4.1.8",
"rolldown": "^1.2.7",
"rollup": "^4.63.1",
"typescript": "^5.9.3",
"vite": "^8.2.2"
}
}