edex-ui/package.json

117 lines
3.9 KiB
JSON
Raw Normal View History

2017-01-28 10:20:30 +00:00
{
"name": "edex-ui",
"productName": "eDEX-UI",
"version": "3.0.0-pre",
2017-01-28 10:20:30 +00:00
"description": "A science fiction desktop running everywhere. Awesome.",
"keywords": [
"desktop",
"sci-fi",
"gui",
"portable",
"tty",
"terminal"
],
2017-10-11 14:02:50 +00:00
"main": "src/_boot.js",
2017-01-28 10:20:30 +00:00
"scripts": {
"start": "node_modules/.bin/electron src --nointro",
"install-linux": "npm install && cd src && npm install && ./../node_modules/.bin/electron-rebuild -f -w node-pty && cd ..",
2017-12-12 18:14:02 +00:00
"preinstall-windows": "npm install --global --production windows-build-tools && npm install --global node-gyp && setx PYTHON \"%USERPROFILE%\\.windows-build-tools\\python27\\python.exe\"",
"install-windows": "npm install && cd src && npm install && ..\\node_modules\\.bin\\electron-rebuild -f -w node-pty && cd ..",
"prebuild-linux": "rsync -a --info=progress2 src/ prebuild-src --exclude node_modules && node prebuild-minify.js && cd prebuild-src && npm install",
"prebuild-darwin": "rsync -a src/ prebuild-src --exclude node_modules && node prebuild-minify.js && cd prebuild-src && npm install",
"prebuild-windows": "rmdir /S /Q src\\node_modules && mkdir prebuild-src && xcopy src\\* prebuild-src\\ /E /C /Q /Y && node prebuild-minify.js && cd prebuild-src && npm install",
2018-06-13 17:21:42 +00:00
"build-linux": "./node_modules/.bin/electron-builder build -l -p never",
"build-darwin": "./node_modules/.bin/electron-builder build -m -p never",
"build-windows": "node_modules\\.bin\\electron-builder build -w -p never",
2018-06-13 17:21:42 +00:00
"postbuild-linux": "rm -R prebuild-src",
"postbuild-darwin": "rm -R prebuild-src",
"postbuild-windows": "rmdir /S /Q prebuild-src",
"test": "rsync -a --info=progress2 src/ prebuild-src --exclude node_modules && node prebuild-minify.js && cd prebuild-src && npm install && snyk test && cd .. && rm -R prebuild-src",
"init-file-icons": "git submodule update --init",
"update-file-icons": "git submodule foreach git pull origin master && node file-icons-generator.js"
2017-01-28 10:20:30 +00:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/GitSquared/edex-ui.git"
},
"author": "Gabriel 'Squared' SAILLARD <gabriel@saillard.dev> (https://gaby.dev)",
2017-01-28 10:20:30 +00:00
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/GitSquared/edex-ui/issues"
},
"homepage": "https://github.com/GitSquared/edex-ui#readme",
2017-10-11 14:02:50 +00:00
"build": {
"appId": "com.edex.ui",
2018-01-05 10:44:59 +00:00
"productName": "eDEX-UI",
2017-10-11 14:02:50 +00:00
"asar": true,
"compression": "maximum",
2020-02-01 15:54:16 +00:00
"copyright": "Copyright © 2017-2020 Gabriel 'Squared' SAILLARD <gabriel@saillard.dev> (https://gaby.dev)",
2017-10-11 14:02:50 +00:00
"directories": {
"output": "dist",
"app": "prebuild-src"
},
"forceCodeSigning": false,
"npmRebuild": true,
"artifactName": "eDEX-UI-${os}-${arch}.${ext}",
2017-10-11 14:02:50 +00:00
"linux": {
"target": [
2018-01-05 11:06:26 +00:00
{
"target": "AppImage",
"arch": [
2018-06-07 17:29:59 +00:00
"x64",
"ia32"
]
2017-10-11 14:02:50 +00:00
}
],
2018-01-05 11:06:26 +00:00
"category": "System",
2017-10-11 14:02:50 +00:00
"icon": "media/linuxIcons"
},
"appImage": {
2018-06-14 13:35:42 +00:00
"artifactName": "eDEX-UI Linux (${arch}).AppImage"
},
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"x64"
]
}
],
"category": "public.app-category.utilities",
"icon": "media/icon.icns"
},
"dmg": {
"artifactName": "eDEX-UI MacOS Image.dmg"
},
2017-10-11 14:02:50 +00:00
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
2017-10-11 14:02:50 +00:00
}
],
"icon": "media/icon.ico"
},
"nsis": {
"artifactName": "eDEX-UI Windows Installer.exe",
"oneClick": true,
"deleteAppDataOnUninstall": true
2017-10-11 14:02:50 +00:00
}
2017-09-30 14:57:42 +00:00
},
"dependencies": {
2020-02-01 15:54:16 +00:00
"clean-css": "4.2.3",
2020-03-18 10:24:48 +00:00
"electron": "8.1.1",
"electron-builder": "^22.4.1",
"electron-rebuild": "^1.10.1",
"node-abi": "2.15.0",
2017-10-22 16:03:12 +00:00
"node-json-minify": "1.0.0",
"uglify-es": "3.3.9"
},
"optionalDependencies": {
"cson-parser": "4.0.4"
}
}