-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 756 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 756 Bytes
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
{
"name": "kaja",
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@types/bun": "^1.3.14",
"nitro": "npm:nitro-nightly@3.0.1-20260605-145636-4ab22a9d"
},
"description": "monorepo",
"packageManager": "bun@1.3.14",
"private": true,
"scripts": {
"dev": "bun run --filter '@kaja/api' --filter '@kaja/web' dev",
"dev:cli": "bun run --env-file=apps/cli/.env apps/cli/src/cli.tsx",
"lint": "biome check",
"lint:fix": "biome check --write --unsafe",
"typecheck": "for pkg in apps/*; do cd $pkg && bunx tsc --noEmit; cd ~-; done",
"test": "bun --env-file=apps/api/.env.example --env-file=apps/api/.env test"
},
"workspaces": [
"apps/*",
"packages/*"
],
"overrides": {
"kysely": "0.28.0"
}
}