forked from plutonhq/pluton
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.49 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
40
41
42
43
44
45
46
47
48
{
"name": "pluton",
"version": "0.18.3",
"description": "Pluton - Open Source Backup Software",
"license": "Apache-2.0",
"scripts": {
"prepare": "pnpm run setup:hooks",
"setup:hooks": "node ./scripts/setup-git-hooks.js",
"build": "turbo run build",
"build:executables": "node ./scripts/build-executables.js",
"build:executables:local": "node ./scripts/build-executables.js --platform win-x64,linux-x64",
"build:appimage:local": "wsl -e bash -c \"cd /mnt/f/JS/apps/pluton/codebase/pluton-app/pluton/installers/linux && ./build-appimage.sh all pluton\"",
"build:exe:local": "node ./installers/windows/build-installer.js",
"dev:backend": "pnpm --filter @plutonhq/core-backend dev",
"dev:frontend": "pnpm --filter @plutonhq/core-frontend dev",
"dev": "concurrently \"pnpm dev:backend\" \"pnpm dev:frontend\" "
},
"devDependencies": {
"@yao-pkg/pkg": "6.20.0",
"compressing": "^2.1.0",
"concurrently": "^9.1.2",
"prettier": "^3.0.0",
"release-please": "^17.2.1",
"syncpack": "^14.0.0",
"turbo": "^2.6.0",
"typescript": "^5.9.3",
"unbzip2-stream": "^1.4.3"
},
"pkg": {
"assets": [
"backend/public/**/*",
"backend/drizzle/**/*"
],
"targets": [
"node24-win-x64",
"node24-linux-x64",
"node24-linux-arm64",
"node24-macos-x64",
"node24-macos-arm64"
],
"outputPath": "dist/executables"
},
"packageManager": "pnpm@10.20.0",
"workspaces": [
"backend",
"frontend"
]
}