edex-ui/package.json

123 lines
4.0 KiB
JSON
Raw Normal View History

2017-01-28 10:20:30 +00:00
{
"name": "edex-ui",
"productName": "eDEX-UI",
2020-12-20 09:19:59 +00:00
"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": "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": "mkdir prebuild-src && xcopy src\\* prebuild-src\\ /E /C /Q /Y && node prebuild-minify.js && cd prebuild-src && npm install",
"build-linux": "./node_modules/.bin/electron-builder build -l",
"build-darwin": "./node_modules/.bin/electron-builder build -m",
"build-windows": "node_modules\\.bin\\electron-builder build -w",
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",
"publish": "github",
2017-10-11 14:02:50 +00:00
"asar": true,
"compression": "normal",
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",
"arm64"
]
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": {
"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-${arch}.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-${arch}.exe",
"oneClick": false,
"allowToChangeInstallationDirectory": 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-12-20 09:17:41 +00:00
"electron": "^10.2.0",
"electron-builder": "^22.10.3",
"electron-rebuild": "^2.3.4",
"mime-types": "^2.1.27",
"node-abi": "2.19.3",
2017-10-22 16:03:12 +00:00
"node-json-minify": "1.0.0",
2020-12-21 10:15:25 +00:00
"terser": "^5.5.1"
},
"optionalDependencies": {
"cson-parser": "4.0.7"
},
"devDependencies": {}
2020-03-23 13:27:48 +00:00
}