2020-04-30 17:48:53 +02:00
|
|
|
{
|
|
|
|
"name": "antares",
|
|
|
|
"productName": "Antares",
|
2023-08-11 16:50:20 +02:00
|
|
|
"version": "0.7.16-beta.0",
|
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",
|
2022-08-02 10:37:27 +02:00
|
|
|
"build": "cross-env NODE_ENV=production npm run compile && electron-builder --publish never",
|
|
|
|
"build:appx": "npm run build -- --win appx",
|
2022-08-01 18:06:57 +02:00
|
|
|
"rebuild:electron": "rimraf ./dist && npm run postinstall && npm run devtools:install",
|
2020-08-05 22:09:23 +02:00
|
|
|
"release": "standard-version",
|
2023-07-31 10:55:05 +02:00
|
|
|
"release:beta": "npm run release -- --prerelease beta",
|
2022-04-28 10:34:44 +02:00
|
|
|
"devtools:install": "node scripts/devtoolsInstaller",
|
2022-08-01 18:06:57 +02:00
|
|
|
"postinstall": "electron-builder install-app-deps",
|
2023-08-04 12:28:03 +02:00
|
|
|
"translation:check": "ts-node ./scripts/translationCheck.ts",
|
2022-05-07 23:20:31 +02:00
|
|
|
"test:e2e": "npm run compile && npm run test:e2e-dry",
|
|
|
|
"test:e2e-dry": "xvfb-maybe -- playwright test",
|
2022-06-05 17:57:44 +02:00
|
|
|
"lint": "eslint . --ext .js,.ts,.vue && stylelint \"./src/**/*.{css,scss,sass,vue}\"",
|
|
|
|
"lint:fix": "eslint . --ext .js,.ts,.vue --fix && stylelint \"./src/**/*.{css,scss,sass,vue}\" --fix",
|
2021-10-31 16:07:53 +01:00
|
|
|
"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",
|
2022-04-28 10:34:44 +02:00
|
|
|
"antares": {
|
|
|
|
"devtoolsId": "nhdogjmejiglipccpnnnanhbledajbpd"
|
|
|
|
},
|
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",
|
2022-08-05 17:03:16 +02:00
|
|
|
"arch": [
|
2022-08-03 11:33:26 +02:00
|
|
|
"x64",
|
2023-08-01 10:02:35 +02:00
|
|
|
"arm64",
|
2023-05-01 13:41:01 +02:00
|
|
|
"armv7l"
|
2023-03-06 09:38:51 +01:00
|
|
|
]
|
2021-05-14 18:59:58 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"target": "AppImage",
|
|
|
|
"arch": [
|
|
|
|
"x64",
|
2023-08-01 10:02:35 +02:00
|
|
|
"arm64",
|
2023-05-01 13:41:01 +02:00
|
|
|
"armv7l"
|
2021-05-14 18:59:58 +02:00
|
|
|
]
|
|
|
|
}
|
2020-08-05 22:09:23 +02:00
|
|
|
],
|
2022-08-09 10:48:53 +02:00
|
|
|
"icon": "assets/linux",
|
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
|
|
|
},
|
2022-06-02 11:17:53 +02:00
|
|
|
"nsis": {
|
|
|
|
"license": "./LICENSE",
|
|
|
|
"installerIcon": "assets/icon.ico",
|
|
|
|
"uninstallerIcon": "assets/icon.ico",
|
2022-06-02 12:50:05 +02:00
|
|
|
"installerHeader": "assets/icon.ico"
|
2022-06-02 11:17:53 +02:00
|
|
|
},
|
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": {
|
2022-05-07 22:50:11 +02:00
|
|
|
"@electron/remote": "~2.0.1",
|
|
|
|
"@faker-js/faker": "~6.1.2",
|
2023-02-01 20:05:41 +01:00
|
|
|
"@mdi/font": "~7.1.96",
|
2022-05-07 22:50:11 +02:00
|
|
|
"@turf/helpers": "~6.5.0",
|
2022-07-02 15:30:36 +02:00
|
|
|
"@vueuse/core": "~8.7.5",
|
2022-12-18 15:59:58 +01:00
|
|
|
"ace-builds": "~1.14.0",
|
2022-11-29 15:19:23 +01:00
|
|
|
"better-sqlite3": "~8.0.0",
|
2022-05-07 22:50:11 +02:00
|
|
|
"electron-log": "~4.4.1",
|
2022-12-18 16:01:12 +01:00
|
|
|
"electron-store": "~8.1.0",
|
2022-05-11 11:27:29 +02:00
|
|
|
"electron-updater": "~4.6.5",
|
2022-05-07 22:50:11 +02:00
|
|
|
"electron-window-state": "~5.0.3",
|
|
|
|
"encoding": "~0.1.13",
|
2022-11-28 15:11:29 +01:00
|
|
|
"floating-vue": "~2.0.0-beta.20",
|
2023-05-28 13:20:28 +02:00
|
|
|
"json2php": "~0.0.7",
|
2022-05-07 22:50:11 +02:00
|
|
|
"leaflet": "~1.7.1",
|
2022-10-11 10:12:16 +02:00
|
|
|
"marked": "~4.0.19",
|
2022-07-09 12:38:14 +02:00
|
|
|
"moment": "~2.29.4",
|
2023-08-01 10:02:35 +02:00
|
|
|
"mysql2": "~3.5.2",
|
2022-12-06 12:56:36 +01:00
|
|
|
"node-firebird": "~1.1.4",
|
2023-07-31 10:55:05 +02:00
|
|
|
"pg": "~8.11.1",
|
2022-08-01 18:06:57 +02:00
|
|
|
"pg-connection-string": "~2.5.0",
|
2022-05-07 22:50:11 +02:00
|
|
|
"pg-query-stream": "~4.2.3",
|
|
|
|
"pgsql-ast-parser": "~7.2.1",
|
2023-01-01 20:02:46 +01:00
|
|
|
"pinia": "~2.0.28",
|
2022-05-07 22:50:11 +02:00
|
|
|
"source-map-support": "~0.5.20",
|
|
|
|
"spectre.css": "~0.5.9",
|
2023-04-01 22:01:44 +02:00
|
|
|
"sql-formatter": "~12.2.0",
|
2022-05-07 22:50:11 +02:00
|
|
|
"ssh2-promise": "~1.0.2",
|
|
|
|
"v-mask": "~2.3.0",
|
2022-12-06 12:56:36 +01:00
|
|
|
"vue": "~3.2.45",
|
2022-10-11 10:12:16 +02:00
|
|
|
"vue-i18n": "~9.2.2",
|
2022-05-07 22:50:11 +02:00
|
|
|
"vuedraggable": "~4.1.0"
|
2020-04-30 17:48:53 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-05-07 22:50:11 +02:00
|
|
|
"@babel/eslint-parser": "~7.15.7",
|
|
|
|
"@babel/preset-env": "~7.15.8",
|
|
|
|
"@babel/preset-typescript": "~7.16.7",
|
2022-12-06 12:56:36 +01:00
|
|
|
"@playwright/test": "~1.28.1",
|
2022-05-07 22:50:11 +02:00
|
|
|
"@types/better-sqlite3": "~7.5.0",
|
2022-05-10 12:57:25 +02:00
|
|
|
"@types/leaflet": "~1.7.9",
|
2022-10-11 10:12:16 +02:00
|
|
|
"@types/marked": "~4.0.7",
|
2022-05-07 22:50:11 +02:00
|
|
|
"@types/node": "~17.0.23",
|
|
|
|
"@types/pg": "~8.6.5",
|
2022-12-29 13:04:20 +01:00
|
|
|
"@types/ssh2": "~1.11.6",
|
2022-05-07 22:50:11 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "~5.18.0",
|
|
|
|
"@typescript-eslint/parser": "~5.18.0",
|
|
|
|
"@vue/compiler-sfc": "~3.2.33",
|
|
|
|
"all-contributors-cli": "~6.20.0",
|
|
|
|
"babel-loader": "~8.2.3",
|
|
|
|
"chalk": "~4.1.2",
|
|
|
|
"cross-env": "~7.0.2",
|
|
|
|
"css-loader": "~6.5.0",
|
2023-01-22 15:07:47 +01:00
|
|
|
"electron": "~22.0.3",
|
2022-12-06 12:56:36 +01:00
|
|
|
"electron-builder": "~22.10.3",
|
2022-05-07 22:50:11 +02:00
|
|
|
"eslint": "~7.32.0",
|
|
|
|
"eslint-config-standard": "~16.0.3",
|
|
|
|
"eslint-plugin-import": "~2.24.2",
|
|
|
|
"eslint-plugin-node": "~11.1.0",
|
|
|
|
"eslint-plugin-promise": "~5.2.0",
|
|
|
|
"eslint-plugin-vue": "~8.0.3",
|
|
|
|
"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",
|
2022-05-07 22:50:11 +02:00
|
|
|
"node-loader": "~2.0.0",
|
2022-12-06 12:56:36 +01:00
|
|
|
"playwright": "~1.28.1",
|
|
|
|
"playwright-core": "~1.28.1",
|
2022-08-10 17:59:59 +02:00
|
|
|
"postcss-html": "~1.5.0",
|
2022-05-07 22:50:11 +02:00
|
|
|
"progress-webpack-plugin": "~1.0.12",
|
|
|
|
"rimraf": "~3.0.2",
|
|
|
|
"sass": "~1.42.1",
|
|
|
|
"sass-loader": "~12.3.0",
|
|
|
|
"standard-version": "~9.3.1",
|
|
|
|
"style-loader": "~3.3.1",
|
2022-08-10 17:59:59 +02:00
|
|
|
"stylelint": "~14.9.1",
|
|
|
|
"stylelint-config-recommended-vue": "~1.4.0",
|
|
|
|
"stylelint-config-standard": "~26.0.0",
|
|
|
|
"stylelint-scss": "~4.3.0",
|
2022-05-07 22:50:11 +02:00
|
|
|
"tree-kill": "~1.2.2",
|
|
|
|
"ts-loader": "~9.2.8",
|
2023-08-04 12:28:03 +02:00
|
|
|
"ts-node": "~10.9.1",
|
2022-05-07 22:50:11 +02:00
|
|
|
"typescript": "~4.6.3",
|
|
|
|
"unzip-crx-3": "~0.2.0",
|
|
|
|
"vue-eslint-parser": "~8.3.0",
|
|
|
|
"vue-loader": "~16.8.3",
|
2022-05-09 11:48:30 +02:00
|
|
|
"webpack": "~5.72.0",
|
2022-05-07 22:50:11 +02:00
|
|
|
"webpack-cli": "~4.9.1",
|
2022-12-06 12:56:36 +01:00
|
|
|
"webpack-dev-server": "~4.11.1",
|
2022-05-07 22:50:11 +02:00
|
|
|
"xvfb-maybe": "~0.2.1"
|
2023-01-02 09:21:01 +01:00
|
|
|
},
|
|
|
|
"overrides": {
|
|
|
|
"ssh2-promise": {
|
2023-01-05 17:21:22 +01:00
|
|
|
"ssh2": "github:Fabio286/ssh2"
|
2023-01-02 09:21:01 +01:00
|
|
|
}
|
2020-04-30 17:48:53 +02:00
|
|
|
}
|
2021-11-02 21:51:53 +01:00
|
|
|
}
|