forked from lcpu-club/inpart-bubbles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
17 lines (17 loc) · 818 Bytes
/
package.json
File metadata and controls
17 lines (17 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"name": "@lcpu/inpart-bubbles",
"version": "11.4.514",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev:server": "bun run --watch packages/server/src/index.ts",
"build:server": "bun build --compile --minify --target bun --outfile ./dist/server-bundle packages/server/src/index.ts",
"build:server:linux": "bun build --compile --minify --target bun --outfile ./dist/server-bundle --target bun-linux-x64 packages/server/src/index.ts",
"build:client": "cd packages/client && bunx vite build --outDir ../../dist/client --emptyOutDir",
"build": "bun run --parallel build:server build:client",
"build:linux": "bun run --parallel build:server:linux build:client && cp Caddyfile ./dist/Caddyfile",
"deploy": "bun build:linux && scp -r dist ojw:/home/rocky/"
}
}