-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 1.12 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
{
"name": "@rivet-dev/workflows-workspace",
"private": true,
"type": "module",
"packageManager": "pnpm@10.13.1",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "pnpm --filter @rivet-dev/workflows build",
"check-types": "pnpm --filter @rivet-dev/workflows check-types && pnpm --filter @rivet-dev/workflows-docs-examples check-types",
"test": "pnpm --filter @rivet-dev/workflows test",
"test:e2e": "pnpm --filter @rivet-dev/workflows test:e2e",
"lint": "biome lint .",
"format:check": "biome check packages/workflows/src/rivetkit packages/workflows/src/mod.ts packages/workflows/tests/rivetkit packages/workflows/tests/e2e packages/workflows/tests/compat packages/workflows/tests/fixtures packages/workflows/vitest.config.ts packages/workflows/vitest.e2e.config.ts scripts examples/docs",
"check:boundaries": "tsx scripts/check-boundaries.ts",
"verify:pack": "tsx scripts/verify-pack.ts",
"ci": "pnpm lint && pnpm format:check && pnpm check:boundaries && pnpm check-types && pnpm test && pnpm test:e2e && pnpm build && pnpm verify:pack"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"tsx": "^4.20.6"
}
}