mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 20:26:23 +00:00
76 lines
2.1 KiB
JSON
76 lines
2.1 KiB
JSON
{
|
|
"name": "dbgate",
|
|
"version": "3.8.36",
|
|
"private": true,
|
|
"author": "Jan Prochazka <jenasoft.database@gmail.com>",
|
|
"dependencies": {
|
|
"electron-log": "^4.3.1",
|
|
"electron-store": "^5.1.1",
|
|
"electron-updater": "^4.3.5"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/dbshell/dbgate.git"
|
|
},
|
|
"build": {
|
|
"appId": "org.dbgate",
|
|
"mac": {
|
|
"category": "database",
|
|
"icon": "icon512.png",
|
|
"artifactName": "dbgate-mac-${version}.${ext}",
|
|
"publish": [
|
|
"github"
|
|
]
|
|
},
|
|
"linux": {
|
|
"target": [
|
|
"AppImage",
|
|
"deb"
|
|
],
|
|
"icon": "icon.png",
|
|
"artifactName": "dbgate-linux-${version}.${ext}",
|
|
"category": "Development",
|
|
"synopsis": "Database administration tool for MS SQL, MySQL and PostgreSQL",
|
|
"publish": [
|
|
"github"
|
|
]
|
|
},
|
|
"win": {
|
|
"target": [
|
|
"nsis"
|
|
],
|
|
"artifactName": "dbgate-windows-${version}.${ext}",
|
|
"icon": "icon.ico",
|
|
"publish": [
|
|
"github"
|
|
],
|
|
"rfc3161TimeStampServer": "http://sha256timestamp.ws.symantec.com/sha256/timestamp"
|
|
},
|
|
"files": [
|
|
"packages",
|
|
"src",
|
|
"icon.png"
|
|
]
|
|
},
|
|
"homepage": "./",
|
|
"scripts": {
|
|
"start": "cross-env ELECTRON_START_URL=http://localhost:5000 electron .",
|
|
"start:local": "cross-env electron .",
|
|
"dist": "electron-builder",
|
|
"build": "cd ../packages/api && yarn build && cd ../web && yarn build:app && cd ../../app && yarn dist",
|
|
"build:local": "cd ../packages/api && yarn build && cd ../web && yarn build:app && cd ../../app && yarn predist",
|
|
"postinstall": "electron-builder install-app-deps",
|
|
"predist": "copyfiles ../packages/api/dist/* packages && copyfiles \"../packages/web/build/*\" packages && copyfiles \"../packages/web/build/**/*\" packages"
|
|
},
|
|
"main": "src/electron.js",
|
|
"devDependencies": {
|
|
"copyfiles": "^2.2.0",
|
|
"cross-env": "^6.0.3",
|
|
"electron": "11.1.1",
|
|
"electron-builder": "22.9.1"
|
|
},
|
|
"optionalDependencies": {
|
|
"msnodesqlv8": "^2.0.10"
|
|
}
|
|
}
|