-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 756 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "foundry",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo build",
"dev": "turbo build && concurrently -n web,electron -c blue,green \"bun run --filter @foundry/web dev\" \"bun run --filter @foundry/desktop dev\"",
"typecheck": "turbo typecheck",
"clean": "turbo clean",
"package": "turbo build && node apps/desktop/scripts/prepare-server-modules.cjs && cd apps/desktop && npx electron-builder --config electron-builder.config.cjs",
"postinstall": "electron-rebuild -m apps/server"
},
"packageManager": "bun@1.3.0",
"devDependencies": {
"@electron/rebuild": "^4.0.3",
"concurrently": "^9.2.1",
"turbo": "^2.5.0",
"typescript": "^5.8.0"
}
}