-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.14 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
{
"name": "kairo",
"private": true,
"version": "0.0.0",
"description": "Local-first development intelligence — git history for humans.",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@9.12.0",
"scripts": {
"dev": "pnpm --filter @kairohq/web build && concurrently -k -n api,web -c blue,green \"pnpm --filter @kairohq/cli exec tsx src/bin.ts serve --no-open --port 4170\" \"pnpm --filter @kairohq/web dev\"",
"dev:all": "turbo run dev",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"test": "turbo run test",
"build": "turbo run build",
"clean": "turbo run clean && rm -rf node_modules",
"doctor": "turbo run typecheck lint test --concurrency=10",
"format": "biome format --write ."
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@changesets/cli": "^2.31.0",
"@types/node": "^22.7.4",
"concurrently": "^9.2.1",
"tsx": "^4.19.1",
"turbo": "^2.1.3",
"typescript": "^5.6.2",
"vitest": "^2.1.0"
}
}