-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 2.08 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "codemem-workspace",
"private": true,
"type": "module",
"scripts": {
"clean": "pnpm -r run clean && pnpm exec tsc --build --clean",
"build": "pnpm -r run build",
"e2e": "pnpm exec tsx e2e/bin/run-local.ts",
"e2e:bootstrap": "pnpm exec tsx e2e/bin/run-local.ts bootstrap",
"e2e:coordinator": "pnpm exec tsx e2e/bin/run-local.ts coordinator",
"e2e:direct-sync": "pnpm exec tsx e2e/bin/run-local.ts directSync",
"e2e:fleet-cleanup": "pnpm exec tsx e2e/bin/run-local.ts fleetCleanup",
"e2e:fleet-ready": "pnpm exec tsx e2e/bin/run-local.ts fleetReady",
"e2e:fleet-smoke": "pnpm exec tsx e2e/bin/run-local.ts fleetSmoke",
"e2e:sharing-domains": "pnpm exec tsx e2e/bin/run-local.ts sharingDomains",
"e2e:smoke": "pnpm exec tsx e2e/bin/run-local.ts smoke",
"test": "pnpm exec vitest run",
"test:watch": "pnpm exec vitest",
"test:release-version": "node --test scripts/release-version.test.mjs",
"lint": "pnpm exec biome check packages/",
"format": "pnpm exec biome check --write packages/",
"tsc": "pnpm exec tsc --build",
"typecheck": "pnpm run tsc",
"check": "pnpm run tsc && pnpm run lint && pnpm run test",
"codemem": "tsx --conditions source packages/cli/src/index.ts",
"dev": "bash scripts/dev.sh",
"prepare": "husky",
"release:version": "node scripts/release-version.mjs",
"release:preflight-tag": "bash scripts/release-tag-preflight.sh"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md}": [
"pnpm exec biome check --write --files-ignore-unknown=true --no-errors-on-unmatched"
]
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"drizzle-kit": "^0.31.10",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"tsx": "catalog:",
"typescript": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@11.8.0+sha512.c1f5e7c4cb241c8f174b743851d82f42b802324afc8b0f116b96adb15aa06664948dde36960a3ba1079ba5b4b29dd0140135b94b5b5f5263592249d68e555f26",
"pnpm": {
"strictPeerDependencies": false
}
}