2021-04-13 14:17:53 +00:00
|
|
|
{
|
|
|
|
"name": "dbgate-plugin-mongo",
|
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",
|
2024-06-26 18:41:14 +00:00
|
|
|
"license": "GPL-3.0",
|
2021-04-13 14:17:53 +00:00
|
|
|
"author": "Jan Prochazka",
|
2021-04-15 15:22:53 +00:00
|
|
|
"homepage": "https://dbgate.org",
|
2021-04-13 14:17:53 +00:00
|
|
|
"description": "MongoDB connect plugin for DbGate",
|
2021-04-15 15:22:53 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/dbgate/dbgate"
|
|
|
|
},
|
2021-04-13 14:17:53 +00:00
|
|
|
"keywords": [
|
|
|
|
"dbgate",
|
|
|
|
"dbgateplugin",
|
|
|
|
"mongo",
|
|
|
|
"mongodb"
|
|
|
|
],
|
|
|
|
"files": [
|
2021-04-15 15:22:53 +00:00
|
|
|
"dist",
|
2021-04-15 18:37:23 +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-mongo",
|
2021-04-15 10:42:34 +00:00
|
|
|
"copydist": "yarn build && yarn pack && dbgate-copydist ../dist/dbgate-plugin-mongo",
|
2021-04-13 14:17:53 +00:00
|
|
|
"plugout": "dbgate-plugout dbgate-plugin-mongo",
|
|
|
|
"prepublishOnly": "yarn build"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-08-23 14:27:36 +00:00
|
|
|
"bson": "^6.8.0",
|
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",
|
2021-04-15 18:37:23 +00:00
|
|
|
"is-promise": "^4.0.0",
|
2024-08-23 14:27:36 +00:00
|
|
|
"lodash": "^4.17.21",
|
2024-02-12 11:55:20 +00:00
|
|
|
"mongodb": "^6.3.0",
|
2024-08-23 14:27:36 +00:00
|
|
|
"mongodb-client-encryption": "^6.0.0",
|
|
|
|
"webpack": "^5.91.0",
|
|
|
|
"webpack-cli": "^5.1.4"
|
2021-04-13 14:17:53 +00:00
|
|
|
}
|
2024-08-23 14:27:36 +00:00
|
|
|
}
|