|
3 | 3 | "private": true, |
4 | 4 | "type": "module", |
5 | 5 | "scripts": { |
6 | | - "build": "echo 'TODO'", |
7 | | - "dev": "echo 'TODO'", |
| 6 | + "build": "pnpm -r run build", |
| 7 | + "dev": "pnpm -r --parallel run dev", |
8 | 8 | "format": "bun run --bun prettier --write README.md .github/ ./packages && bun run format:pkg", |
9 | | - "format:lint": "bun run --bun prettier --check README.md .github/ ./packages", |
10 | | - "format:pkg": "sort-package-json package.json packages/*/package.json", |
11 | | - "lint": "bun run --run typecheck && bun run --run format:lint && bun run lint:circular-deps", |
12 | | - "lint:circular-deps": "bun run --bun madge --circular --extensions ts,tsx packages/", |
| 9 | + "format:pkg": "bun run --bun sort-package-json package.json packages/*/package.json", |
| 10 | + "lint": "bun run --run typecheck && bun run --run lint:prettier && bun run lint:madge", |
| 11 | + "lint:madge": "bun run --bun madge --circular --extensions ts,tsx packages/", |
| 12 | + "lint:prettier": "bun run --bun prettier --check README.md .github/ ./packages", |
13 | 13 | "prepare": "bun run format:pkg", |
14 | | - "test": "echo 'TODO: bun test packages/'", |
15 | | - "typecheck": "echo 'TODO: bun run --bun tsc'", |
| 14 | + "test": "vitest --run", |
| 15 | + "test:watch": "vitest", |
| 16 | + "typecheck": "pnpm -r run typecheck", |
16 | 17 | "update-deps": "pnpm -r up --latest --save", |
17 | 18 | "postupdate-deps": "pnpm install && echo 'Installed dependencies again to apply overrides.'" |
18 | 19 | }, |
19 | 20 | "devDependencies": { |
20 | 21 | "madge": "^8.0.0", |
21 | 22 | "prettier": "^3.5.3", |
22 | 23 | "sort-package-json": "^3.0.0", |
23 | | - "typescript": "^5.8.2" |
| 24 | + "typescript": "^5.8.2", |
| 25 | + "vitest": "^3.0.9" |
24 | 26 | }, |
25 | 27 | "packageManager": "pnpm@10.7.0", |
26 | 28 | "engines": { |
|
0 commit comments