edex-ui/package.json

99 lines
2.5 KiB
JSON
Raw Normal View History

2017-01-28 10:20:30 +00:00
{
"name": "edex-ui",
"productName": "eDEX-UI",
2017-10-11 17:16:27 +00:00
"version": "0.1.0",
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 .",
"install-linux": "npm install && ./node_modules/.bin/electron-rebuild -f -w node-pty",
2017-10-23 08:33:28 +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 && node_modules\\.bin\\electron-rebuild -f -w node-pty",
2017-12-11 18:40:21 +00:00
"prebuild": "mkdir prebuild-src && cp -R src/* prebuild-src/ && cp package.json prebuild-src/ && node prebuild-minify.js",
2017-10-13 17:02:41 +00:00
"build": "./node_modules/.bin/electron-builder build -wl -p never",
2017-10-22 10:45:03 +00:00
"postbuild": "rm -R prebuild-src"
2017-01-28 10:20:30 +00:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/GitSquared/edex-ui.git"
},
2017-10-11 14:02:50 +00:00
"author": "GitSquared, Pixelylon",
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",
"productName": "eDEX-UI Human Interface",
"asar": true,
"compression": "maximum",
"copyright": "FREE FOR ALL",
"directories": {
"output": "dist",
"app": "prebuild-src"
},
"electronDownload": {
"strictSSL": false,
"verifyChecksum": true
},
"forceCodeSigning": false,
"npmRebuild": true,
2017-10-11 17:16:27 +00:00
"publish": {
"provider": "github",
"repo": "edex-ui",
"owner": "GitSquared",
"vPrefixedTagName": true,
"host": "github.com",
2017-10-12 17:48:36 +00:00
"protocol": "https"
2017-10-11 17:16:27 +00:00
},
2017-10-11 14:02:50 +00:00
"linux": {
"target": [
{
"target": "tar.gz",
"arch": [
"x64",
"ia32",
"armv7l"
]
2017-10-11 14:02:50 +00:00
}
],
"icon": "media/linuxIcons"
},
"win": {
"target": [
{
"target": "portable",
"arch": [
"x64",
"ia32"
]
2017-10-11 14:02:50 +00:00
}
],
"icon": "media/icon.ico"
}
2017-09-30 14:57:42 +00:00
},
"dependencies": {
2017-12-11 18:38:21 +00:00
"battery-level": "3.0.0",
"node-pty": "0.7.1",
"ws": "3.2.0",
"xterm": "2.9.2"
},
2017-09-30 14:57:42 +00:00
"devDependencies": {
2017-10-22 16:03:12 +00:00
"electron": "1.7.9",
"electron-builder": "19.48.3",
2017-10-22 16:03:12 +00:00
"electron-rebuild": "1.6.0",
"minifier": "0.8.1",
"node-json-minify": "1.0.0",
"uglify-js": "3.2.2"
2017-09-30 14:57:42 +00:00
}
2017-01-28 10:20:30 +00:00
}