mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 03:16:01 +00:00
46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
{
|
|
"name": "dbgate-plugin-oracle",
|
|
"main": "dist/backend.js",
|
|
"version": "6.0.0-alpha.1",
|
|
"license": "GPL-3.0",
|
|
"description": "Oracle connector plugin for DbGate",
|
|
"homepage": "https://dbgate.org",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/rinie/dbgate-plugin-oracle"
|
|
},
|
|
"author": "Rinie Kervel",
|
|
"keywords": [
|
|
"dbgate",
|
|
"oracle",
|
|
"dbgatebuiltin"
|
|
],
|
|
"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-oracle",
|
|
"copydist": "yarn build && yarn pack && dbgate-copydist ../dist/dbgate-plugin-oracle",
|
|
"plugout": "dbgate-plugout dbgate-plugin-oracle",
|
|
"prepublishOnly": "yarn build"
|
|
},
|
|
"devDependencies": {
|
|
"dbgate-plugin-tools": "^1.0.8",
|
|
"webpack": "^5.91.0",
|
|
"webpack-cli": "^5.1.4"
|
|
},
|
|
"dependencies": {
|
|
"dbgate-query-splitter": "^4.11.3",
|
|
"dbgate-tools": "^6.0.0-alpha.1",
|
|
"lodash": "^4.17.21"
|
|
},
|
|
"optionalDependencies": {
|
|
"oracledb": "^6.6.0"
|
|
}
|
|
}
|