antares/package.json

161 lines
4.5 KiB
JSON
Raw Normal View History

2020-04-30 17:48:53 +02:00
{
"name": "antares",
"productName": "Antares",
2021-10-23 10:18:46 +02:00
"version": "0.3.8",
2020-06-10 19:29:10 +02:00
"description": "A cross-platform easy to use SQL client.",
2020-04-30 17:48:53 +02:00
"license": "MIT",
2020-12-01 16:48:20 +01:00
"repository": "https://github.com/Fabio286/antares.git",
2020-04-30 17:48:53 +02:00
"scripts": {
"debug": "npm run rebuild:electron && npm run debug-runner",
"debug-runner": "node scripts/devRunner.js --remote-debug",
"compile": "npm run compile:main && npm run compile:renderer",
"compile:main": "webpack --mode=production --config webpack.main.config.js",
"compile:renderer": "webpack --mode=production --config webpack.renderer.config.js",
2021-05-17 19:08:36 +02:00
"build": "cross-env NODE_ENV=production npm run compile",
"build:local": "npm run build && electron-builder",
"build:appx": "npm run build:local -- --win appx",
"rebuild:electron": "npm run postinstall && electron-rebuild",
"release": "standard-version",
"release:pre": "npm run release -- --prerelease alpha",
"postinstall": "electron-builder install-app-deps",
"test": "npm run lint",
"lint": "eslint . --ext .js,.vue && stylelint \"./src/**/*.{css,scss,sass,vue}\"",
"lint:fix": "eslint . --ext .js,.vue --fix && stylelint \"./src/**/*.{css,scss,sass,vue}\" --fix"
2020-04-30 17:48:53 +02:00
},
2020-05-30 19:07:34 +02:00
"author": "Fabio Di Stasio <fabio286@gmail.com>",
"main": "./dist/main.js",
2020-04-30 17:48:53 +02:00
"build": {
2020-12-01 16:48:20 +01:00
"appId": "com.fabio286.antares",
2020-06-19 18:03:52 +02:00
"artifactName": "${productName}-${version}-${os}_${arch}.${ext}",
"asar": true,
"directories": {
"output": "build",
"buildResources": "assets"
},
"asarUnpack": "**\\*.{node,dll}",
"files": [
"dist/**/*",
"node_modules",
"package.json"
],
"win": {
2021-03-13 19:30:57 +01:00
"target": [
"nsis",
"portable"
]
},
"mac": {
"target": {
"target": "default",
"arch": [
"x64"
]
}
},
"linux": {
"target": [
2021-05-14 18:59:58 +02:00
{
"target": "deb",
"arch": "x64"
},
{
"target": "AppImage",
"arch": [
"x64",
2021-05-17 19:08:36 +02:00
"armv7l",
"arm64"
2021-05-14 18:59:58 +02:00
]
}
],
"category": "Development"
2021-01-14 18:11:36 +01:00
},
"appImage": {
"license": "./LICENSE",
"category": "Development"
2021-03-06 17:11:03 +01:00
},
"portable": {
"artifactName": "${productName}-${version}-portable.exe"
2021-03-26 16:52:49 +01:00
},
2021-03-28 11:55:15 +02:00
"appx": {
2021-03-26 16:52:49 +01:00
"displayName": "Antares SQL Client",
"identityName": "62514FabioDiStasio.AntaresSQLClient",
"publisher": "CN=1A2729ED-865C-41D2-9038-39AE2A63AA52",
"applicationId": "FabioDiStasio.AntaresSQLClient"
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
}
2020-04-30 17:48:53 +02:00
},
"dependencies": {
"@electron/remote": "^2.0.1",
"@mdi/font": "^6.1.95",
2021-10-01 15:33:10 +02:00
"ace-builds": "^1.4.13",
"electron-log": "^4.4.1",
2021-10-01 15:33:10 +02:00
"electron-store": "^8.0.1",
"electron-updater": "^4.3.9",
2021-05-22 16:12:08 +02:00
"faker": "^5.5.3",
2021-10-01 15:33:10 +02:00
"marked": "^3.0.4",
2020-10-26 09:26:25 +01:00
"moment": "^2.29.1",
2021-10-21 10:51:07 +02:00
"mysql2": "^2.3.2",
"pg": "^8.7.1",
2021-05-14 18:59:58 +02:00
"pgsql-ast-parser": "^7.2.1",
2021-09-13 15:02:28 +02:00
"source-map-support": "^0.5.20",
"spectre.css": "^0.5.9",
2021-04-19 19:15:06 +02:00
"sql-formatter": "^4.0.2",
"ssh2-promise": "^1.0.2",
2021-10-01 15:33:10 +02:00
"v-mask": "^2.3.0",
"vue-i18n": "^8.26.5",
2020-10-26 09:26:25 +01:00
"vuedraggable": "^2.24.3",
2021-05-22 16:12:08 +02:00
"vuex": "^3.6.2"
2020-04-30 17:48:53 +02:00
},
"devDependencies": {
2021-10-01 15:33:10 +02:00
"@babel/eslint-parser": "^7.15.7",
"@babel/preset-env": "^7.15.8",
2021-10-21 10:51:07 +02:00
"babel-loader": "^8.2.3",
"chalk": "^4.1.2",
"clean-webpack-plugin": "^4.0.0",
2020-05-31 17:56:33 +02:00
"cross-env": "^7.0.2",
"css-loader": "^6.5.0",
2021-10-21 10:51:07 +02:00
"electron": "^15.3.0",
"electron-builder": "^22.13.1",
"electron-devtools-installer": "^3.2.0",
"electron-rebuild": "^3.2.3",
"eslint": "^7.32.0",
2021-05-25 10:09:09 +02:00
"eslint-config-standard": "^16.0.3",
2021-09-01 18:17:11 +02:00
"eslint-plugin-import": "^2.24.2",
2020-04-30 17:48:53 +02:00
"eslint-plugin-node": "^11.1.0",
2021-04-14 10:42:00 +02:00
"eslint-plugin-promise": "^5.1.0",
2021-10-01 15:33:10 +02:00
"eslint-plugin-vue": "^7.18.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.4.3",
"node-loader": "^2.0.0",
"progress-webpack-plugin": "^1.0.12",
2021-10-01 15:33:10 +02:00
"sass": "^1.42.1",
"sass-loader": "^10.2.0",
"standard-version": "^9.3.1",
"style-loader": "^3.3.1",
2021-05-06 22:55:10 +02:00
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"stylelint-scss": "^3.21.0",
"tree-kill": "^1.2.2",
"vue": "^2.6.14",
2021-10-21 10:51:07 +02:00
"vue-loader": "^15.9.8",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.60.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^3.11.2"
2020-04-30 17:48:53 +02:00
}
2021-05-22 16:25:52 +02:00
}