dsh-dbhub-live 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +110 -0
- package/cordis.patch.yml +8 -0
- package/lib/index.mjs +1417 -0
- package/package.json +39 -0
package/package.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "dsh-dbhub-live",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "DSH 数据库 MCP 桥接插件:常驻多源 dbhub 服务 + 按工作区工具 + 临时动态连接。",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "lib/index.mjs",
|
|
7
|
+
"files": [
|
|
8
|
+
"lib",
|
|
9
|
+
"cordis.patch.yml",
|
|
10
|
+
"README.md",
|
|
11
|
+
"LICENSE"
|
|
12
|
+
],
|
|
13
|
+
"keywords": [
|
|
14
|
+
"dsh",
|
|
15
|
+
"dbhub",
|
|
16
|
+
"mcp",
|
|
17
|
+
"database",
|
|
18
|
+
"mysql",
|
|
19
|
+
"postgres",
|
|
20
|
+
"sqlite",
|
|
21
|
+
"mariadb",
|
|
22
|
+
"sqlserver",
|
|
23
|
+
"plugin"
|
|
24
|
+
],
|
|
25
|
+
"dsh": {
|
|
26
|
+
"bundle": {
|
|
27
|
+
"patch": "./cordis.patch.yml"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "https://github.com/mr-mihu/dsh-dbhub-live.git"
|
|
33
|
+
},
|
|
34
|
+
"bugs": {
|
|
35
|
+
"url": "https://github.com/mr-mihu/dsh-dbhub-live/issues"
|
|
36
|
+
},
|
|
37
|
+
"homepage": "https://github.com/mr-mihu/dsh-dbhub-live#readme",
|
|
38
|
+
"license": "MIT"
|
|
39
|
+
}
|