-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 1.19 KB
/
package.json
File metadata and controls
20 lines (20 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "blitz-macos",
"version": "1.0.30",
"type": "module",
"private": true,
"scripts": {
"app": "npm run build:app:debug",
"build:app": "killall Blitz 2>/dev/null; BUILD_CONFIG=${BUILD_CONFIG:-release} CODESIGN_TIMESTAMP=${CODESIGN_TIMESTAMP:-auto} bash scripts/bundle.sh ${BUILD_CONFIG:-release} && open .build/Blitz.app",
"build:app:debug": "killall Blitz 2>/dev/null; CODESIGN_TIMESTAMP=none bash scripts/bundle.sh debug && open .build/Blitz.app",
"build:app:release": "killall Blitz 2>/dev/null; bash scripts/bundle.sh release && open .build/Blitz.app",
"build:pkg": "bash scripts/build-pkg.sh",
"deploy:r2": "bash scripts/deploy-pkg.sh",
"deploy:r2:snapshot": "bash scripts/deploy-pkg.sh --snapshot",
"release": "npm version patch --no-git-tag-version && VERSION=$(node -p \"require('./package.json').version\") && git add package.json && git commit -m \"$VERSION\" && git tag \"v$VERSION\" && git push origin master --tags",
"install:local": "npm run build:pkg && sudo pkill -f blitz-postinstall 2>/dev/null; sudo installer -pkg build/Blitz-*.pkg -target / -verbose && open /Applications/Blitz.app"
},
"devDependencies": {
"@repalash/rclone.js": "*"
}
}