mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 20:26:23 +00:00
41 lines
1.2 KiB
JSON
41 lines
1.2 KiB
JSON
{
|
|
"name": "dbgate-plugin-sqlite",
|
|
"main": "dist/backend.js",
|
|
"version": "1.0.0",
|
|
"homepage": "https://dbgate.org",
|
|
"description": "SQLite connect plugin for DbGate",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/dbgate/dbgate"
|
|
},
|
|
"author": "Jan Prochazka",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"dbgate",
|
|
"dbgateplugin",
|
|
"sqlite"
|
|
],
|
|
"files": [
|
|
"dist",
|
|
"icon.svg"
|
|
],
|
|
"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": {
|
|
"dbgate-tools": "^4.1.1",
|
|
"dbgate-plugin-tools": "^1.0.4",
|
|
"byline": "^5.0.0",
|
|
"sql-query-identifier": "^2.1.0",
|
|
"webpack": "^4.42.0",
|
|
"webpack-cli": "^3.3.11"
|
|
}
|
|
}
|
|
|