-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.57 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
{
"name": "rootline-workspace",
"version": "2.0.0",
"private": true,
"description": "Rootline by baole.space workspace orchestration",
"license": "ISC",
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@10.33.0",
"scripts": {
"audit:prod": "pnpm audit --prod --audit-level high",
"build:workspace-deps": "pnpm --filter @rootline/contracts build && pnpm --filter @rootline/core build",
"build": "pnpm -r --if-present run build",
"lint": "eslint \"apps/**/*.{ts,tsx}\" \"packages/**/*.ts\" \"scripts/**/*.mjs\" \"tests/**/*.mjs\" --max-warnings 0",
"test": "pnpm build:workspace-deps && pnpm -r --if-present run test",
"test:api-image": "sh apps/api/scripts/test-docker-image.sh",
"test:plan": "node --test tests/plan-acceptance.test.mjs",
"test:unit": "pnpm build:workspace-deps && pnpm --filter @rootline/contracts test && pnpm --filter @rootline/core test && pnpm --filter folder-structure-sync test:unit && pnpm --filter @rootline/desktop test",
"test:release": "node --test tests/*.test.mjs",
"validate:workflows": "node --test tests/release-workflows.test.mjs",
"typecheck": "pnpm build:workspace-deps && pnpm --filter @rootline/api prisma:generate && pnpm -r --if-present run typecheck"
},
"pnpm": {
"overrides": {
"js-yaml@>=5.0.0 <=5.2.1": "5.2.2"
}
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.0.0",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.46.1",
"vitest": "^3.2.4",
"yaml": "^2.8.1"
}
}