66 lines
1.4 KiB
JSON
66 lines
1.4 KiB
JSON
{
|
|
"name": "SBD",
|
|
"version": "1.0.0",
|
|
"description": "Sandboxed Discord with Push-to-Talk",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"start": "electron .",
|
|
"postinstall": "electron-builder install-app-deps",
|
|
"package-win": "electron-builder --win --publish never"
|
|
},
|
|
"repository": "https://github.com/khlam/sandboxed-discord",
|
|
"keywords": [
|
|
"discord",
|
|
"privacy",
|
|
"sandbox"
|
|
],
|
|
"author": "Kin-Ho Lam",
|
|
"license": "GNU GENERAL PUBLIC LICENSE Version 3",
|
|
"devDependencies": {
|
|
"electron": "^6.0.12",
|
|
"electron-builder": "^21.2.0"
|
|
},
|
|
"dependencies": {
|
|
"iohook": "^0.6.1",
|
|
"node-gyp": "^6.0.0",
|
|
"win-audio": "^2.0.2"
|
|
},
|
|
"iohook": {
|
|
"targets": [
|
|
"electron-73"
|
|
],
|
|
"platforms": [
|
|
"win32",
|
|
"darwin",
|
|
"linux"
|
|
],
|
|
"arches": [
|
|
"x64"
|
|
]
|
|
},
|
|
"build": {
|
|
"appId": "com.electron.SandboxedDiscord",
|
|
"productName": "World Of Addons",
|
|
"win": {
|
|
"asar": true,
|
|
"icon": "assets/icon.ico",
|
|
"target": [
|
|
"nsis"
|
|
]
|
|
},
|
|
"nsis": {
|
|
"installerIcon": "assets/icon.ico",
|
|
"uninstallerIcon": "assets/icon.ico",
|
|
"license": "LICENSE.md",
|
|
"createDesktopShortcut": true,
|
|
"createStartMenuShortcut": true,
|
|
"oneClick": false,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"runAfterFinish": true
|
|
},
|
|
"directories": {
|
|
"output": "release"
|
|
}
|
|
}
|
|
}
|