-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 742 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 742 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": "baipiao-monorepo",
"version": "1.1.1",
"private": true,
"type": "module",
"packageManager": "pnpm@8.6.1",
"scripts": {
"build": "tsc -b",
"typecheck": "tsc -b --pretty false",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"docs:dev": "pnpm --filter @baipiao/docs-site dev",
"docs:build": "pnpm --filter @baipiao/docs-site build",
"catalog:build": "pnpm --filter baipiao-core catalog:build",
"catalog:validate": "pnpm --filter baipiao-core catalog:validate"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"eslint": "^9.39.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3",
"vitest": "^4.0.8"
}
}