-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.05 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.05 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
{
"name": "docfonts",
"private": true,
"license": "MIT",
"type": "module",
"workspaces": [
"packages/fallbacks"
],
"scripts": {
"build": "bun run --cwd packages/fallbacks build",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"format": "biome check --write .",
"test": "bun test packages/fallbacks tools/corpus",
"corpus:acquire": "bun run tools/corpus/acquire.ts",
"corpus:compare": "bun run tools/corpus/compare.ts",
"corpus:bakeoff": "bun run tools/corpus/bakeoff.ts",
"corpus:app": "bun run tools/corpus/server.ts",
"corpus:visual": "bun run tools/corpus/visual-review.ts",
"check": "bun run typecheck && bun run test && bun run lint && bun run build",
"check:fast": "bun run typecheck && bun run lint",
"prepare": "if [ -z \"$CI\" ]; then bunx lefthook install; fi"
},
"devDependencies": {
"@biomejs/biome": "2.4.16",
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"bun-types": "^1.3.10",
"lefthook": "^2.1.9",
"typescript": "^5.6.0"
}
}