EffectTools/app/package.json
2020-08-21 12:03:53 +08:00

52 lines
1.1 KiB
JSON

{
"name": "effecttools",
"version": "0.0.1",
"author": "zhl",
"main": "main.js",
"scripts": {
"dev": "electron --inspect=5858 --enable-logging .",
"start": "electron .",
"postinstall": "electron-builder install-app-deps",
"build:linux": "electron-builder -l",
"build:windows": "electron-builder -w",
"build:mac": "electron-builder -m"
},
"devDependencies": {
"electron": "^8.2.4",
"electron-builder": "^22.6.0"
},
"build": {
"appId": "EffectTools",
"win": {
"icon": "logo.png",
"target": [
"nsis"
]
},
"nsis": {
"allowToChangeInstallationDirectory": true,
"oneClick": false,
"menuCategory": true,
"allowElevation": false
},
"linux": {
"icon": "logo.png",
"category": "Utility",
"target": [
"AppImage"
]
},
"mac": {
"icon": "logo.png",
"type": "development",
"category": "public.app-category.developer-tools",
"target": [
"dmg"
]
}
},
"dependencies": {
"fs-jetpack": "^3.1.0"
}
}