-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 825 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 825 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
{
"name": "splitbr-monorepo",
"private": true,
"packageManager": "pnpm@11.1.2",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test && pnpm run test:scripts",
"drift-check": "node scripts/drift-check.mjs",
"test:scripts": "vitest run scripts/",
"site:dev": "pnpm --filter @splitbr/client build && vitepress dev docs/site",
"site:build": "pnpm --filter @splitbr/client build && node scripts/site-sync-readmes.mjs && vitepress build docs/site",
"site:preview": "vitepress preview docs/site",
"test:site": "pnpm --filter @splitbr/client build && vitest run --config docs/site/vitest.config.ts"
},
"devDependencies": {
"vitepress": "1.6.4",
"vitest": "^4.1.10"
},
"dependencies": {
"@splitbr/client": "workspace:*"
}
}