-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.21 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
36
37
38
39
{
"name": "cue",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Cue — an edge conductor for your stove. Prop a phone at the cooktop; it perceives on-device, reasons in Qwen Cloud, and conducts the timing so every dish lands hot, together — and never sends a frame of your kitchen anywhere.",
"license": "MIT",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "concurrently -k -n client,server -c cyan,green \"npm:dev:client\" \"npm:dev:server\"",
"dev:client": "vite",
"dev:server": "tsx watch server/index.ts",
"build": "vite build",
"start": "cross-env NODE_ENV=production tsx server/index.ts",
"serve": "npm run build && npm run start",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@hono/node-server": "^1.13.7",
"hono": "^4.6.14",
"idb-keyval": "^6.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zustand": "^4.5.5"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.0",
"cross-env": "^7.0.3",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "^5.4.11"
}
}