Files
trawl/package.json
T

26 lines
679 B
JSON
Raw Normal View History

2026-05-31 09:12:00 +02:00
{
"private": true,
"name": "trawl",
2026-08-10 19:21:02 +02:00
"version": "1.4.0",
2026-05-31 09:12:00 +02:00
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev:api": "bun --cwd apps/api dev",
"dev:web": "bun --cwd apps/web dev",
"dev:docs": "bun --cwd apps/docs dev",
"lint": "biome lint .",
"format": "biome format . --write",
2026-08-10 19:21:02 +02:00
"check": "biome check .",
"fix": "biome check . --write",
"typecheck": "bun --filter '*' typecheck",
"test": "bun test",
"build": "bun --cwd apps/web build && bun --cwd apps/docs build",
"verify": "bun run check && bun run typecheck && bun run test && bun run build"
2026-05-31 09:12:00 +02:00
},
"devDependencies": {
2026-08-10 19:21:02 +02:00
"@biomejs/biome": "2.5.7"
2026-05-31 09:12:00 +02:00
}
}