-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.65 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.65 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
{
"name": "vibebud-monorepo",
"version": "0.0.0",
"private": true,
"license": "MIT",
"description": "Top-level scripts for building and running vibebud's core (web) and desktop shells.",
"scripts": {
"web-dev": "npm --prefix core run dev",
"web-build": "npm --prefix core run build",
"web-start": "npm --prefix core start",
"desktop-dev": "npm --prefix desktop run dev",
"desktop-start": "npm --prefix desktop start",
"desktop-build": "npm --prefix core run build && npm --prefix desktop run build:win",
"desktop-build:win": "npm --prefix core run build && npm --prefix desktop run build:win",
"desktop-build:mac": "npm --prefix core run build && npm --prefix desktop run build:mac",
"desktop-build:linux": "npm --prefix core run build && npm --prefix desktop run build:linux",
"desktop-run": "npm run web-build && npm --prefix desktop run sync-core && npm --prefix desktop start",
"server-dev": "npm --prefix ../server run dev",
"server-start": "npm --prefix ../server start",
"server-check": "npm --prefix ../server run check",
"android-sync": "npm run web-build && cd mobile && npx cap sync android && cd .. && node -e \"require('fs').rmSync('mobile/android/app/src/main/assets/public/installers', { recursive: true, force: true })\"",
"android-dev": "npm --prefix mobile run dev",
"android-open": "npm --prefix mobile run open",
"android-build": "npm run android-sync && npm --prefix mobile run build",
"android-run": "npm run web-build && cd mobile && npx cap sync && npx cap run android",
"install-all": "npm --prefix core install && npm --prefix desktop install && npm --prefix mobile install"
}
}