-
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) · 1.07 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.07 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
{
"name": "open-deck",
"private": true,
"version": "0.7.2",
"description": "AI Command Center — Open Deck by Florex Labs",
"scripts": {
"dev": "tsx scripts/qr.ts && concurrently -n server,agent -c blue,magenta \"pnpm dev:server\" \"pnpm dev:agent\"",
"dev:web": "pnpm --filter @open-deck/web dev",
"dev:server": "pnpm --filter @open-deck/server dev",
"dev:agent": "pnpm --filter @open-deck/agent dev",
"build": "pnpm -r build",
"build:standalone": "tsx scripts/build-standalone.ts",
"build:installer": "cd electron && npm install && npm run build:mac",
"build:installer:win": "cd electron && npm install && npm run build:win",
"lint": "eslint apps/ packages/",
"test": "vitest run",
"typecheck": "pnpm -r typecheck"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"concurrently": "^9.2.1",
"esbuild": "^0.28.0",
"eslint": "^10.3.0",
"qrcode-terminal": "^0.12.0",
"typescript": "5.8.3",
"typescript-eslint": "^8.59.2",
"vitest": "3.1.3"
}
}