2021-04-13 14:17:53 +00:00
|
|
|
{
|
|
|
|
"name": "dbgate-plugin-mysql",
|
2021-04-17 15:57:31 +00:00
|
|
|
"main": "dist/backend.js",
|
2022-05-19 18:52:43 +00:00
|
|
|
"version": "5.0.0-alpha.1",
|
2021-04-15 15:22:53 +00:00
|
|
|
"homepage": "https://dbgate.org",
|
2021-04-13 14:17:53 +00:00
|
|
|
"description": "MySQL connect plugin for DbGate",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-04-15 15:22:53 +00:00
|
|
|
"url": "https://github.com/dbgate/dbgate"
|
2021-04-13 14:17:53 +00:00
|
|
|
},
|
|
|
|
"author": "Jan Prochazka",
|
2024-06-26 18:41:14 +00:00
|
|
|
"license": "GPL-3.0",
|
2021-04-13 14:17:53 +00:00
|
|
|
"keywords": [
|
|
|
|
"sql",
|
|
|
|
"dbgate",
|
|
|
|
"dbgateplugin",
|
|
|
|
"mysql"
|
|
|
|
],
|
|
|
|
"files": [
|
2021-04-15 15:22:53 +00:00
|
|
|
"dist",
|
2021-04-17 07:24:46 +00:00
|
|
|
"icon.svg"
|
2021-04-13 14:17:53 +00:00
|
|
|
],
|
|
|
|
"scripts": {
|
|
|
|
"build:frontend": "webpack --config webpack-frontend.config",
|
2021-04-15 09:00:42 +00:00
|
|
|
"build:frontend:watch": "webpack --watch --config webpack-frontend.config",
|
2021-04-13 14:17:53 +00:00
|
|
|
"build:backend": "webpack --config webpack-backend.config.js",
|
|
|
|
"build": "yarn build:frontend && yarn build:backend",
|
|
|
|
"plugin": "yarn build && yarn pack && dbgate-plugin dbgate-plugin-mysql",
|
2021-04-15 10:42:34 +00:00
|
|
|
"copydist": "yarn build && yarn pack && dbgate-copydist ../dist/dbgate-plugin-mysql",
|
2021-04-13 14:17:53 +00:00
|
|
|
"plugout": "dbgate-plugout dbgate-plugin-mysql",
|
|
|
|
"prepublishOnly": "yarn build"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-04-28 09:35:36 +00:00
|
|
|
"antares-mysql-dumper": "^0.0.1",
|
2021-04-15 10:42:34 +00:00
|
|
|
"dbgate-plugin-tools": "^1.0.7",
|
2024-10-10 11:09:34 +00:00
|
|
|
"dbgate-query-splitter": "^4.11.2",
|
2022-05-19 18:52:43 +00:00
|
|
|
"dbgate-tools": "^5.0.0-alpha.1",
|
2024-10-07 14:05:12 +00:00
|
|
|
"mysql2": "^3.11.3",
|
2024-05-08 08:17:45 +00:00
|
|
|
"webpack": "^5.91.0",
|
2023-12-24 14:17:06 +00:00
|
|
|
"webpack-cli": "^5.1.4"
|
2021-04-13 14:17:53 +00:00
|
|
|
}
|
2022-04-15 18:12:40 +00:00
|
|
|
}
|