mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-28 09:36:00 +00:00
plugins package fixes
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "dbgate-plugin-csv",
|
"name": "dbgate-plugin-csv",
|
||||||
"main": "dist/backend.js",
|
"main": "src/backend/index.js",
|
||||||
"version": "1.0.9",
|
"version": "1.0.9",
|
||||||
"homepage": "https://dbgate.org",
|
"homepage": "https://dbgate.org",
|
||||||
"description": "CSV import/export plugin for DbGate",
|
"description": "CSV import/export plugin for DbGate",
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
"url": "https://github.com/dbgate/dbgate"
|
"url": "https://github.com/dbgate/dbgate"
|
||||||
},
|
},
|
||||||
"author": "Jan Prochazka",
|
"author": "Jan Prochazka",
|
||||||
"license": "GPL",
|
"license": "MIT",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"csv",
|
"csv",
|
||||||
"import",
|
"import",
|
||||||
@@ -31,8 +31,11 @@
|
|||||||
"plugout": "dbgate-plugout dbgate-plugin-csv",
|
"plugout": "dbgate-plugout dbgate-plugin-csv",
|
||||||
"prepublishOnly": "yarn build"
|
"prepublishOnly": "yarn build"
|
||||||
},
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"lodash": "^4.17.20",
|
||||||
|
"csv": "^5.3.2"
|
||||||
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"csv": "^5.3.2",
|
|
||||||
"dbgate-plugin-tools": "^1.0.7",
|
"dbgate-plugin-tools": "^1.0.7",
|
||||||
"lodash": "^4.17.20",
|
"lodash": "^4.17.20",
|
||||||
"webpack": "^4.42.0",
|
"webpack": "^4.42.0",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "dbgate-plugin-excel",
|
"name": "dbgate-plugin-excel",
|
||||||
"main": "dist/backend.js",
|
"main": "src/backend/index.js",
|
||||||
"version": "1.0.8",
|
"version": "1.0.8",
|
||||||
"description": "MS Excel import/export plugin for DbGate",
|
"description": "MS Excel import/export plugin for DbGate",
|
||||||
"homepage": "https://dbgate.org",
|
"homepage": "https://dbgate.org",
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
"url": "https://github.com/dbgate/dbgate"
|
"url": "https://github.com/dbgate/dbgate"
|
||||||
},
|
},
|
||||||
"author": "Jan Prochazka",
|
"author": "Jan Prochazka",
|
||||||
"license": "GPL",
|
"license": "MIT",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"excel",
|
"excel",
|
||||||
"import",
|
"import",
|
||||||
@@ -31,11 +31,13 @@
|
|||||||
"plugout": "dbgate-plugout dbgate-plugin-excel",
|
"plugout": "dbgate-plugout dbgate-plugin-excel",
|
||||||
"prepublishOnly": "yarn build"
|
"prepublishOnly": "yarn build"
|
||||||
},
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"lodash": "^4.17.20",
|
||||||
|
"xlsx": "^0.16.8"
|
||||||
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"dbgate-plugin-tools": "^1.0.7",
|
"dbgate-plugin-tools": "^1.0.7",
|
||||||
"lodash": "^4.17.20",
|
|
||||||
"webpack": "^4.42.0",
|
"webpack": "^4.42.0",
|
||||||
"webpack-cli": "^3.3.11",
|
"webpack-cli": "^3.3.11"
|
||||||
"xlsx": "^0.16.8"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "dbgate-plugin-mongo",
|
"name": "dbgate-plugin-mongo",
|
||||||
"main": "dist/backend.js",
|
"main": "src/backend/index.js",
|
||||||
"version": "1.0.1",
|
"version": "1.0.1",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"author": "Jan Prochazka",
|
"author": "Jan Prochazka",
|
||||||
@@ -31,15 +31,14 @@
|
|||||||
"prepublishOnly": "yarn build"
|
"prepublishOnly": "yarn build"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"byline": "^5.0.0",
|
|
||||||
"dbgate-plugin-tools": "^1.0.7",
|
"dbgate-plugin-tools": "^1.0.7",
|
||||||
"dbgate-tools": "^4.1.0-rc.1",
|
|
||||||
"is-promise": "^4.0.0",
|
|
||||||
"mongodb": "^3.6.5",
|
|
||||||
"webpack": "^4.42.0",
|
"webpack": "^4.42.0",
|
||||||
"webpack-cli": "^3.3.11"
|
"webpack-cli": "^3.3.11"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"dbgate-tools": "^4.1.0-rc.1",
|
||||||
|
"is-promise": "^4.0.0",
|
||||||
|
"mongodb": "^3.6.5",
|
||||||
"mongodb-client-encryption": "^1.2.3"
|
"mongodb-client-encryption": "^1.2.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "dbgate-plugin-mssql",
|
"name": "dbgate-plugin-mssql",
|
||||||
"main": "dist/backend.js",
|
"main": "src/backend/index.js",
|
||||||
"version": "1.2.2",
|
"version": "1.2.2",
|
||||||
"homepage": "https://dbgate.org",
|
"homepage": "https://dbgate.org",
|
||||||
"description": "MS SQL connect plugin for DbGate",
|
"description": "MS SQL connect plugin for DbGate",
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
"url": "https://github.com/dbgate/dbgate"
|
"url": "https://github.com/dbgate/dbgate"
|
||||||
},
|
},
|
||||||
"author": "Jan Prochazka",
|
"author": "Jan Prochazka",
|
||||||
"license": "GPL",
|
"license": "MIT",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"sql",
|
"sql",
|
||||||
"mssql",
|
"mssql",
|
||||||
@@ -31,11 +31,13 @@
|
|||||||
"plugout": "dbgate-plugout dbgate-plugin-mssql"
|
"plugout": "dbgate-plugout dbgate-plugin-mssql"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"async-lock": "^1.2.6",
|
|
||||||
"dbgate-plugin-tools": "^1.0.7",
|
"dbgate-plugin-tools": "^1.0.7",
|
||||||
"dbgate-tools": "^4.0.3-rc.1",
|
|
||||||
"tedious": "^9.2.3",
|
|
||||||
"webpack": "^4.42.0",
|
"webpack": "^4.42.0",
|
||||||
"webpack-cli": "^3.3.11"
|
"webpack-cli": "^3.3.11"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"dbgate-tools": "^4.0.3-rc.1",
|
||||||
|
"tedious": "^9.2.3",
|
||||||
|
"async-lock": "^1.2.6"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "dbgate-plugin-mysql",
|
"name": "dbgate-plugin-mysql",
|
||||||
"main": "dist/backend.js",
|
"main": "src/backend/index.js",
|
||||||
"version": "1.2.2",
|
"version": "1.2.2",
|
||||||
"homepage": "https://dbgate.org",
|
"homepage": "https://dbgate.org",
|
||||||
"description": "MySQL connect plugin for DbGate",
|
"description": "MySQL connect plugin for DbGate",
|
||||||
@@ -31,11 +31,13 @@
|
|||||||
"prepublishOnly": "yarn build"
|
"prepublishOnly": "yarn build"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@verycrazydog/mysql-parser": "^1.2.0",
|
|
||||||
"dbgate-plugin-tools": "^1.0.7",
|
"dbgate-plugin-tools": "^1.0.7",
|
||||||
"dbgate-tools": "^4.0.3-rc.1",
|
|
||||||
"mysql2": "^2.2.5",
|
|
||||||
"webpack": "^4.42.0",
|
"webpack": "^4.42.0",
|
||||||
"webpack-cli": "^3.3.11"
|
"webpack-cli": "^3.3.11"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@verycrazydog/mysql-parser": "^1.2.0",
|
||||||
|
"dbgate-tools": "^4.0.3-rc.1",
|
||||||
|
"mysql2": "^2.2.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "dbgate-plugin-postgres",
|
"name": "dbgate-plugin-postgres",
|
||||||
"main": "dist/backend.js",
|
"main": "src/backend/index.js",
|
||||||
"version": "1.2.2",
|
"version": "1.2.2",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"description": "PostgreSQL connector plugin for DbGate",
|
"description": "PostgreSQL connector plugin for DbGate",
|
||||||
@@ -31,11 +31,13 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"dbgate-plugin-tools": "^1.0.7",
|
"dbgate-plugin-tools": "^1.0.7",
|
||||||
|
"webpack": "^4.42.0",
|
||||||
|
"webpack-cli": "^3.3.11"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
"dbgate-tools": "^4.0.3-rc.1",
|
"dbgate-tools": "^4.0.3-rc.1",
|
||||||
"lodash": "^4.17.15",
|
"lodash": "^4.17.15",
|
||||||
"pg": "^7.17.0",
|
"pg": "^7.17.0",
|
||||||
"pg-query-stream": "^3.1.1",
|
"pg-query-stream": "^3.1.1"
|
||||||
"webpack": "^4.42.0",
|
|
||||||
"webpack-cli": "^3.3.11"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user