forked from zuohuadong/elygate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) 路 1.13 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) 路 1.13 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
{
"name": "elygate",
"version": "0.8.2",
"description": "AI API 鎵瑰彂骞冲彴",
"private": true,
"scripts": {
"dev": "bun --cwd apps/gateway dev & bun --cwd apps/admin dev",
"check": "bun --cwd apps/gateway check && bun --cwd apps/portal check && bun --cwd apps/admin check",
"build": "bun --cwd apps/portal build && bun --cwd apps/admin build",
"build:binary": "bun run scripts/build-binary.ts",
"build:binary:all": "bun run scripts/build-binary.ts --all",
"build:binary:linux-x64": "bun run scripts/build-binary.ts bun-linux-x64",
"build:binary:linux-arm64": "bun run scripts/build-binary.ts bun-linux-arm64",
"build:binary:darwin-x64": "bun run scripts/build-binary.ts bun-darwin-x64",
"build:binary:darwin-arm64": "bun run scripts/build-binary.ts bun-darwin-arm64",
"build:binary:windows": "bun run scripts/build-binary.ts bun-windows-x64",
"start": "bun --cwd apps/gateway start & bun --cwd apps/admin start"
},
"workspaces": [
"apps/*",
"packages/*"
],
"engines": {
"bun": ">=1.3.0"
},
"devDependencies": {
"@types/bun": "^1.3.11",
"bun-types": "^1.3.11"
}
}