dbgate/plugins/dbgate-plugin-redis/package.json

43 lines
1.2 KiB
JSON
Raw Normal View History

2022-03-05 10:14:07 +00:00
{
"name": "dbgate-plugin-redis",
"main": "dist/backend.js",
"version": "1.0.0",
"license": "GPL-3.0",
2022-03-05 10:14:07 +00:00
"description": "Redis connector plugin for DbGate",
"homepage": "https://dbgate.org",
"repository": {
"type": "git",
"url": "https://github.com/dbgate/dbgate"
},
"author": "Jan Prochazka",
"keywords": [
"dbgate",
"dbgateplugin",
"redis"
],
"files": [
"dist"
],
"scripts": {
"build:frontend": "webpack --config webpack-frontend.config",
"build:frontend:watch": "webpack --watch --config webpack-frontend.config",
"build:backend": "webpack --config webpack-backend.config.js",
"build": "yarn build:frontend && yarn build:backend",
"plugin": "yarn build && yarn pack && dbgate-plugin dbgate-plugin-redis",
"plugout": "dbgate-plugout dbgate-plugin-redis",
"copydist": "yarn build && yarn pack && dbgate-copydist ../dist/dbgate-plugin-redis",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"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",
2022-03-05 10:14:07 +00:00
"lodash": "^4.17.21",
2024-05-08 08:17:45 +00:00
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
2022-03-05 17:46:18 +00:00
"async": "^3.2.3",
2024-05-09 10:16:14 +00:00
"ioredis": "^5.4.1",
2022-03-26 09:36:44 +00:00
"node-redis-dump2": "^0.5.0"
2022-03-05 10:14:07 +00:00
}
}