-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 869 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 869 Bytes
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
{
"name": "@rolldown/plugins-monorepo",
"private": true,
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"format": "oxfmt .",
"lint": "oxlint --type-aware --type-check .",
"test": "vitest",
"test:e2e": "pnpm run --filter=./examples test",
"dev": "pnpm -r --parallel --filter=\"./packages/*\" run dev",
"build": "pnpm -r --filter=\"./packages/*\" run build",
"release": "pnpm run --filter=./scripts release",
"ci-publish": "pnpm run --filter=./scripts ci-publish",
"generate:swc-outputs": "pnpm run --filter=@rolldown/swc-output-gen generate"
},
"devDependencies": {
"@typescript/native-preview": "7.0.0-dev.20260329.1",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"oxlint-tsgolint": "^0.18.1",
"tsdown": "^0.21.7",
"vitest": "^4.1.2"
},
"packageManager": "pnpm@10.33.0"
}