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

40 lines
1.1 KiB
JSON
Raw Normal View History

2022-01-30 09:30:47 +00:00
{
"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": "MIT",
"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",
2022-01-30 13:15:54 +00:00
"copydist": "yarn build && yarn pack && dbgate-copydist ../dist/dbgate-plugin-xml",
2022-01-30 09:30:47 +00:00
"plugout": "dbgate-plugout dbgate-plugin-xml",
"prepublishOnly": "yarn build"
},
"devDependencies": {
2022-02-03 08:34:17 +00:00
"node-xml-stream-parser": "^1.0.12",
2022-01-30 13:15:54 +00:00
"dbgate-plugin-tools": "^1.0.7",
2024-05-08 08:17:45 +00:00
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
2022-01-30 09:30:47 +00:00
}
}