This repository has been archived by the owner on Dec 31, 2021. It is now read-only.
generated from aubreypwd-old/nativefied-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
23 lines (23 loc) · 1.54 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "chillhop-radio",
"version": "2.0.0",
"description": "An (unofficial) native MacOS App for Chillhop Radio.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"installsupport": "echo 'Run: [brew install graphicsmagick imagemagick] for additional DMG support.'",
"postinstall": "npm run installsupport",
"build": "rm -Rf './build/Chillhop Radio-darwin-x64' && npm run nativefier",
"nativefier": "./node_modules/.bin/nativefier --name 'Chillhop Radio' --platform 'Mac' --verbose --darwin-dark-mode-support --icon './icons/mac/Application.icns' --internal-urls '' --width 755 --min-width 755 --max-width 755 --height 427 --min-height 427 --max-height 427 'https://www.youtube.com/embed/5yx6BWlEVcY?autoplay=1&modestbranding=1&cc_load_policy=0&loop=1' --title-bar-style hiddenInset --hide-window-frame --inject='node_modules/@aubreypwd/nativefied-app-styles/body-draggable.css' --inject='style.css' ./build",
"dist": "npm run build && mkdir -p dist/ && ./node_modules/.bin/create-dmg './build/Chillhop Radio-darwin-x64/Chillhop Radio.app' --overwrite --dmg-title='Chillhop Radio' --identity='Aubrey Portwood' ./dist/ || true && mv './dist/Chillhop Radio 1.0.0.dmg' \"./dist/Chillhop Radio $npm_package_version.dmg\""
},
"author": "Aubrey Portwood",
"license": "GPL-3.0-or-later",
"devDependencies": {
"create-dmg": "~5.3.0",
"nativefier": "~10.1.0"
},
"dependencies": {
"@aubreypwd/nativefied-app-styles": "git+ssh://git@github.com/aubreypwd/nativefied-app-styles.git"
}
}