-
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) · 991 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 991 Bytes
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": "pump-studio-trainer",
"version": "0.1.0",
"description": "No-code agent training for Pump Studio — desktop app",
"author": "pumpdotstudio",
"license": "MIT",
"scripts": {
"dev": "vite build && electrobun build && electrobun dev",
"dev:hmr": "concurrently \"vite --port 5173\" \"sleep 2 && electrobun build && electrobun dev\"",
"hmr": "vite --port 5173",
"build": "vite build && electrobun build",
"build:canary": "vite build && electrobun build --channel canary",
"build:prod": "vite build && electrobun build --channel prod",
"start": "bun run dev"
},
"dependencies": {
"electrobun": "1.13.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"typescript": "^5.7.2",
"vite": "^6.0.3"
}
}