-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.23 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.23 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
37
38
39
40
41
42
43
44
45
46
{
"name": "kintsu",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"dotenv": "^17.2.2",
"zod": "^4.1.13",
"typescript": "^5",
"convex": "^1.31.2",
"alchemy": "^0.82.1"
}
},
"type": "module",
"scripts": {
"dev": "bun run --filter '*' dev",
"build": "bun run --filter '*' build",
"check-types": "bun run --filter '*' check-types",
"dev:native": "bun run --filter native dev",
"dev:web": "bun run --filter web dev",
"dev:server": "bun run --filter @kintsu/backend dev",
"dev:setup": "bun run --filter @kintsu/backend dev:setup",
"deploy": "bun run --filter @kintsu/infra deploy",
"destroy": "bun run --filter @kintsu/infra destroy",
"check": "oxlint && oxfmt --write",
"ingest:book": "bun run scripts/ingest-book.ts"
},
"dependencies": {
"@kintsu/env": "workspace:*",
"dotenv": "catalog:",
"zod": "catalog:"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20251213.0",
"@kintsu/config": "workspace:*",
"convex": "^1.31.7",
"openai": "^6.18.0",
"oxfmt": "^0.26.0",
"oxlint": "^1.41.0",
"typescript": "catalog:"
},
"packageManager": "bun@1.3.5"
}