-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 918 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 918 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
27
28
29
30
31
32
33
{
"name": "chatos",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"format": "turbo run format",
"check-types": "turbo run check-types",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"db:generate": "turbo run db:generate --filter=@chatos/db",
"db:migrate": "turbo run db:migrate --filter=@chatos/db",
"smoke": "make smoke",
"check": "make check",
"release": "changeset publish",
"publish:cli": "turbo run build --filter=chat-os && cd apps/tui && bun publish"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.29.8",
"turbo": "^2.5.8",
"typescript": "^5.8.3"
}
}