2020-04-30 17:48:53 +02:00
|
|
|
{
|
|
|
|
"name": "antares",
|
|
|
|
"productName": "Antares",
|
2022-04-10 10:55:23 +02:00
|
|
|
"version": "0.5.2",
|
2021-11-02 21:51:53 +01:00
|
|
|
"description": "A modern, fast and productivity driven SQL client with a focus in UX.",
|
2020-04-30 17:48:53 +02:00
|
|
|
"license": "MIT",
|
2022-03-31 16:04:47 +02:00
|
|
|
"repository": "https://github.com/antares-sql/antares.git",
|
2020-04-30 17:48:53 +02:00
|
|
|
"scripts": {
|
2021-10-31 10:36:45 +01:00
|
|
|
"debug": "npm run rebuild:electron && npm run debug-runner",
|
|
|
|
"debug-runner": "node scripts/devRunner.js --remote-debug",
|
2022-02-17 18:47:50 +01:00
|
|
|
"compile": "npm run compile:main && npm run compile:workers && npm run compile:renderer",
|
2021-10-31 10:36:45 +01:00
|
|
|
"compile:main": "webpack --mode=production --config webpack.main.config.js",
|
2022-02-17 18:47:50 +01:00
|
|
|
"compile:workers": "webpack --mode=production --config webpack.workers.config.js",
|
2021-10-31 10:36:45 +01:00
|
|
|
"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",
|
2022-02-17 18:47:50 +01:00
|
|
|
"rebuild:electron": "rimraf ./dist && npm run postinstall",
|
2020-08-05 22:09:23 +02:00
|
|
|
"release": "standard-version",
|
2020-08-07 17:27:25 +02:00
|
|
|
"release:pre": "npm run release -- --prerelease alpha",
|
2021-10-31 10:36:45 +01:00
|
|
|
"postinstall": "electron-builder install-app-deps",
|
2021-11-25 18:34:33 +01:00
|
|
|
"test": "npm run compile && node tests/app.spec.js",
|
2020-09-17 17:58:12 +02:00
|
|
|
"lint": "eslint . --ext .js,.vue && stylelint \"./src/**/*.{css,scss,sass,vue}\"",
|
2021-10-31 16:07:53 +01:00
|
|
|
"lint:fix": "eslint . --ext .js,.vue --fix && stylelint \"./src/**/*.{css,scss,sass,vue}\" --fix",
|
|
|
|
"contributors:add": "all-contributors add",
|
|
|
|
"contributors:generate": "all-contributors generate"
|
2020-04-30 17:48:53 +02:00
|
|
|
},
|
2020-05-30 19:07:34 +02:00
|
|
|
"author": "Fabio Di Stasio <fabio286@gmail.com>",
|
2021-10-31 10:36:45 +01:00
|
|
|
"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}",
|
2021-10-31 10:36:45 +01:00
|
|
|
"asar": true,
|
2021-11-13 23:00:53 +01:00
|
|
|
"buildDependenciesFromSource": true,
|
2021-10-31 10:36:45 +01:00
|
|
|
"directories": {
|
|
|
|
"output": "build",
|
|
|
|
"buildResources": "assets"
|
|
|
|
},
|
|
|
|
"asarUnpack": "**\\*.{node,dll}",
|
|
|
|
"files": [
|
|
|
|
"dist/**/*",
|
|
|
|
"node_modules",
|
|
|
|
"package.json"
|
|
|
|
],
|
2021-03-06 17:29:00 +01:00
|
|
|
"win": {
|
2021-03-13 19:30:57 +01:00
|
|
|
"target": [
|
|
|
|
"nsis",
|
|
|
|
"portable"
|
|
|
|
]
|
2021-03-06 17:29:00 +01:00
|
|
|
},
|
2021-05-14 22:24:50 +02:00
|
|
|
"mac": {
|
|
|
|
"target": {
|
|
|
|
"target": "default",
|
|
|
|
"arch": [
|
2022-03-12 17:42:34 +01:00
|
|
|
"x64"
|
2021-05-14 22:24:50 +02:00
|
|
|
]
|
|
|
|
}
|
2020-08-05 22:09:23 +02:00
|
|
|
},
|
|
|
|
"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
|
|
|
]
|
|
|
|
}
|
2020-08-05 22:09:23 +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-11-12 13:12:05 +01:00
|
|
|
"displayName": "Antares SQL",
|
|
|
|
"backgroundColor": "transparent",
|
2021-11-28 16:28:54 +01:00
|
|
|
"showNameOnTiles": true,
|
2021-03-26 16:52:49 +01:00
|
|
|
"identityName": "62514FabioDiStasio.AntaresSQLClient",
|
|
|
|
"publisher": "CN=1A2729ED-865C-41D2-9038-39AE2A63AA52",
|
|
|
|
"applicationId": "FabioDiStasio.AntaresSQLClient"
|
2021-05-14 22:24:50 +02:00
|
|
|
},
|
|
|
|
"dmg": {
|
|
|
|
"contents": [
|
|
|
|
{
|
|
|
|
"x": 130,
|
|
|
|
"y": 220
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"x": 410,
|
|
|
|
"y": 220,
|
|
|
|
"type": "link",
|
|
|
|
"path": "/Applications"
|
|
|
|
}
|
|
|
|
]
|
2020-08-05 22:09:23 +02:00
|
|
|
}
|
2020-04-30 17:48:53 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-09-20 21:06:45 +02:00
|
|
|
"@electron/remote": "^2.0.1",
|
2022-04-15 14:56:13 +02:00
|
|
|
"@faker-js/faker": "^6.1.2",
|
2021-09-06 21:06:42 +02:00
|
|
|
"@mdi/font": "^6.1.95",
|
2022-01-30 11:45:24 +01:00
|
|
|
"@turf/helpers": "^6.5.0",
|
2021-12-10 23:30:03 +01:00
|
|
|
"@vscode/vscode-languagedetection": "^1.0.21",
|
2022-04-21 14:39:24 +02:00
|
|
|
"@vue/compat": "^3.2.33",
|
2021-10-01 15:33:10 +02:00
|
|
|
"ace-builds": "^1.4.13",
|
2022-03-06 01:20:10 +01:00
|
|
|
"better-sqlite3": "^7.5.0",
|
2021-08-04 09:59:50 +02:00
|
|
|
"electron-log": "^4.4.1",
|
2021-10-01 15:33:10 +02:00
|
|
|
"electron-store": "^8.0.1",
|
2022-01-25 09:08:45 +01:00
|
|
|
"electron-updater": "^4.6.1",
|
2021-12-28 17:12:10 +01:00
|
|
|
"electron-window-state": "^5.0.3",
|
2022-04-23 16:15:54 +02:00
|
|
|
"encoding": "^0.1.13",
|
2022-01-30 11:45:24 +01:00
|
|
|
"leaflet": "^1.7.1",
|
2021-11-08 20:06:33 +01:00
|
|
|
"marked": "^4.0.0",
|
2020-10-26 09:26:25 +01:00
|
|
|
"moment": "^2.29.1",
|
2021-10-21 10:51:07 +02:00
|
|
|
"mysql2": "^2.3.2",
|
2021-08-04 09:59:50 +02:00
|
|
|
"pg": "^8.7.1",
|
2022-03-21 18:32:45 +01:00
|
|
|
"pg-query-stream": "^4.2.3",
|
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",
|
2020-07-02 08:13:17 +02:00
|
|
|
"spectre.css": "^0.5.9",
|
2021-04-19 19:15:06 +02:00
|
|
|
"sql-formatter": "^4.0.2",
|
2021-10-01 15:52:48 +02:00
|
|
|
"ssh2-promise": "^1.0.2",
|
2021-10-01 15:33:10 +02:00
|
|
|
"v-mask": "^2.3.0",
|
2022-04-21 14:39:24 +02:00
|
|
|
"vue": "^3.2.33",
|
|
|
|
"vue-i18n": "^9.1.9",
|
|
|
|
"vuedraggable": "^4.1.0",
|
|
|
|
"vuex": "^4.0.2"
|
2020-04-30 17:48:53 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-10-01 15:33:10 +02:00
|
|
|
"@babel/eslint-parser": "^7.15.7",
|
2021-10-31 10:36:45 +01:00
|
|
|
"@babel/preset-env": "^7.15.8",
|
2022-04-12 17:04:11 +02:00
|
|
|
"@babel/preset-typescript": "^7.16.7",
|
|
|
|
"@types/better-sqlite3": "^7.5.0",
|
|
|
|
"@types/node": "^17.0.23",
|
|
|
|
"@types/pg": "^8.6.5",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.18.0",
|
|
|
|
"@typescript-eslint/parser": "^5.18.0",
|
2022-04-21 14:39:24 +02:00
|
|
|
"@vue/compiler-sfc": "^3.2.33",
|
2021-10-31 16:07:53 +01:00
|
|
|
"all-contributors-cli": "^6.20.0",
|
2021-10-21 10:51:07 +02:00
|
|
|
"babel-loader": "^8.2.3",
|
2021-10-31 10:36:45 +01:00
|
|
|
"chalk": "^4.1.2",
|
2020-05-31 17:56:33 +02:00
|
|
|
"cross-env": "^7.0.2",
|
2021-10-31 10:36:45 +01:00
|
|
|
"css-loader": "^6.5.0",
|
2022-02-15 09:21:14 +01:00
|
|
|
"electron": "^17.0.1",
|
2021-12-23 11:47:17 +01:00
|
|
|
"electron-builder": "^22.14.11",
|
2021-04-26 10:07:47 +02:00
|
|
|
"electron-devtools-installer": "^3.2.0",
|
2021-08-04 09:59:50 +02:00
|
|
|
"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",
|
2022-01-16 11:50:35 +01:00
|
|
|
"eslint-plugin-promise": "^5.2.0",
|
2021-11-01 20:05:26 +01:00
|
|
|
"eslint-plugin-vue": "^8.0.3",
|
2021-10-31 10:36:45 +01:00
|
|
|
"file-loader": "^6.2.0",
|
|
|
|
"html-webpack-plugin": "^5.5.0",
|
2022-01-16 11:50:35 +01:00
|
|
|
"mini-css-extract-plugin": "~2.4.5",
|
2021-10-31 10:36:45 +01:00
|
|
|
"node-loader": "^2.0.0",
|
2022-01-30 11:44:01 +01:00
|
|
|
"playwright": "^1.18.1",
|
2021-10-31 10:36:45 +01:00
|
|
|
"progress-webpack-plugin": "^1.0.12",
|
2022-02-17 18:47:50 +01:00
|
|
|
"rimraf": "^3.0.2",
|
2021-10-01 15:33:10 +02:00
|
|
|
"sass": "^1.42.1",
|
2021-11-01 20:07:14 +01:00
|
|
|
"sass-loader": "^12.3.0",
|
2021-08-04 09:59:50 +02:00
|
|
|
"standard-version": "^9.3.1",
|
2021-10-31 10:36:45 +01:00
|
|
|
"style-loader": "^3.3.1",
|
2021-05-06 22:55:10 +02:00
|
|
|
"stylelint": "^13.13.1",
|
2021-04-26 08:25:16 +02:00
|
|
|
"stylelint-config-standard": "^22.0.0",
|
2021-09-15 15:31:57 +02:00
|
|
|
"stylelint-scss": "^3.21.0",
|
2021-10-31 10:36:45 +01:00
|
|
|
"tree-kill": "^1.2.2",
|
2022-04-12 17:04:11 +02:00
|
|
|
"ts-loader": "^9.2.8",
|
|
|
|
"typescript": "^4.6.3",
|
|
|
|
"vue-eslint-parser": "^8.3.0",
|
2022-04-21 14:39:24 +02:00
|
|
|
"vue-loader": "^16.8.3",
|
2021-10-31 10:36:45 +01:00
|
|
|
"webpack": "^5.60.0",
|
|
|
|
"webpack-cli": "^4.9.1",
|
2021-11-02 21:55:42 +01:00
|
|
|
"webpack-dev-server": "^4.4.0"
|
2020-04-30 17:48:53 +02:00
|
|
|
}
|
2021-11-02 21:51:53 +01:00
|
|
|
}
|