-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.01 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.01 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
{
"name": "openzosma",
"version": "0.1.0",
"private": true,
"description": "Self-hosted AI agent platform",
"license": "Apache-2.0",
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"packageManager": "[email protected]",
"scripts": {
"build": "turbo run build",
"check": "turbo run check",
"test": "turbo run test",
"dev": "turbo run dev",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"db:migrate": "pnpm --filter @openzosma/db migrate",
"db:migrate:down": "pnpm --filter @openzosma/db migrate:down",
"db:migrate:auth": "pnpm --filter @openzosma/db migrate:auth",
"db:migrate:create": "pnpm --filter @openzosma/db migrate:create",
"proto:generate": "pnpm --filter @openzosma/grpc generate",
"setup": "tsx packages/create-openzosma/src/index.ts --post-clone"
},
"pnpm": {
"onlyBuiltDependencies": ["@biomejs/biome", "esbuild", "protobufjs", "sharp"]
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"tsx": "^4.21.0",
"turbo": "^2.8.19"
}
}