{ "name": "antares", "productName": "Antares", "version": "0.1.12", "description": "A cross-platform easy to use SQL client.", "license": "MIT", "repository": "https://github.com/Fabio286/antares.git", "scripts": { "dev": "cross-env NODE_ENV=development electron-webpack dev", "compile": "electron-webpack", "build": "cross-env NODE_ENV=production npm run compile", "build:local": "npm run build && electron-builder", "build:appx": "npm run build:local -- --win appx", "release": "standard-version", "release:pre": "npm run release -- --prerelease alpha", "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", "postinstall": "electron-builder install-app-deps" }, "author": "Fabio Di Stasio ", "build": { "appId": "com.fabio286.antares", "artifactName": "${productName}-${version}-${os}_${arch}.${ext}", "win": { "target": [ "nsis", "portable" ] }, "mac": { "target": { "target": "default", "arch": [ "x64" ] } }, "linux": { "target": [ { "target": "deb", "arch": "x64" }, { "target": "AppImage", "arch": [ "x64", "armv7l", "arm64" ] } ], "category": "Development" }, "appImage": { "license": "./LICENSE", "category": "Development" }, "portable": { "artifactName": "${productName}-${version}-portable.exe" }, "appx": { "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" } ] } }, "electronWebpack": { "renderer": { "webpackConfig": "webpack.config.js" } }, "dependencies": { "@electron/remote": "^1.1.0", "@mdi/font": "^5.9.55", "ace-builds": "^1.4.12", "electron-log": "^4.3.5", "electron-store": "^8.0.0", "electron-updater": "^4.3.9", "faker": "^5.5.3", "marked": "^2.0.7", "moment": "^2.29.1", "mysql2": "^2.2.5", "pg": "^8.5.1", "pgsql-ast-parser": "^7.2.1", "source-map-support": "^0.5.16", "spectre.css": "^0.5.9", "sql-formatter": "^4.0.2", "v-mask": "^2.2.4", "vue-i18n": "^8.24.4", "vuedraggable": "^2.24.3", "vuex": "^3.6.2" }, "devDependencies": { "@babel/eslint-parser": "^7.14.4", "cross-env": "^7.0.2", "electron": "^13.1.1", "electron-builder": "22.10.5", "electron-devtools-installer": "^3.2.0", "electron-webpack": "^2.8.2", "electron-webpack-vue": "^2.4.0", "eslint": "^7.28.0", "eslint-config-standard": "^16.0.3", "eslint-plugin-import": "^2.23.4", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^5.1.0", "eslint-plugin-vue": "^7.10.0", "sass": "^1.34.1", "sass-loader": "^10.2.0", "standard-version": "^9.3.0", "stylelint": "^13.13.1", "stylelint-config-standard": "^22.0.0", "stylelint-scss": "^3.19.0", "vue": "^2.6.14", "vue-template-compiler": "^2.6.14", "webpack": "^4.46.0" } }