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

41 lines
1.3 KiB
JSON
Raw Normal View History

2021-04-25 16:49:53 +00:00
{
"name": "dbgate-plugin-sqlite",
"main": "dist/backend.js",
2022-05-19 18:52:43 +00:00
"version": "5.0.0-alpha.1",
2021-05-20 08:47:04 +00:00
"homepage": "https://dbgate.org",
"description": "SQLite connect plugin for DbGate",
"repository": {
"type": "git",
"url": "https://github.com/dbgate/dbgate"
},
"author": "Jan Prochazka",
"license": "GPL-3.0",
2021-04-25 16:49:53 +00:00
"keywords": [
"dbgate",
"dbgateplugin",
"sqlite"
],
"files": [
2021-05-20 08:47:04 +00:00
"dist",
"icon.svg"
2021-04-25 16:49:53 +00:00
],
"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-sqlite",
"copydist": "yarn build && yarn pack && dbgate-copydist ../dist/dbgate-plugin-sqlite",
"plugout": "dbgate-plugout dbgate-plugin-sqlite",
"prepublishOnly": "yarn build"
},
"devDependencies": {
2022-05-19 18:52:43 +00:00
"dbgate-tools": "^5.0.0-alpha.1",
2021-04-25 16:49:53 +00:00
"dbgate-plugin-tools": "^1.0.4",
2024-10-10 11:09:34 +00:00
"dbgate-query-splitter": "^4.11.2",
2021-04-25 16:49:53 +00:00
"byline": "^5.0.0",
2024-05-08 08:17:45 +00:00
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
2021-04-25 16:49:53 +00:00
}