mirror of
https://github.com/dbgate/dbgate
synced 2024-11-07 12:13:57 +00:00
40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"name": "dbgate-plugin-xml",
|
|
"main": "dist/backend.js",
|
|
"version": "1.0.0",
|
|
"homepage": "https://dbgate.org",
|
|
"description": "XML import/export plugin for DbGate",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/dbgate/dbgate"
|
|
},
|
|
"author": "Jan Prochazka",
|
|
"license": "GPL-3.0",
|
|
"keywords": [
|
|
"xml",
|
|
"import",
|
|
"export",
|
|
"dbgate",
|
|
"dbgateplugin"
|
|
],
|
|
"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-xml",
|
|
"copydist": "yarn build && yarn pack && dbgate-copydist ../dist/dbgate-plugin-xml",
|
|
"plugout": "dbgate-plugout dbgate-plugin-xml",
|
|
"prepublishOnly": "yarn build"
|
|
},
|
|
"devDependencies": {
|
|
"node-xml-stream-parser": "^1.0.12",
|
|
"dbgate-plugin-tools": "^1.0.7",
|
|
"webpack": "^5.91.0",
|
|
"webpack-cli": "^5.1.4"
|
|
}
|
|
}
|