@vornrun/connector-sdk 0.6.1 → 0.7.0-beta.10
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/README.md +150 -2
- package/dist/chunk-XOP6JKBX.js +2220 -0
- package/dist/cli.d.ts +10 -0
- package/dist/cli.js +89 -9
- package/dist/index.d.ts +103 -418
- package/dist/index.js +58 -34
- package/dist/packaging-DFTuP4fr.d.ts +882 -0
- package/package.json +3 -1
- package/dist/chunk-457KOZUU.js +0 -773
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vornrun/connector-sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0-beta.10",
|
|
4
4
|
"description": "Build and share Vorn pull connectors as ordinary npm packages",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -37,6 +37,8 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
40
|
+
"esbuild": "^0.28.2",
|
|
41
|
+
"tar": "^7.5.21",
|
|
40
42
|
"zod": "^4.4.3"
|
|
41
43
|
},
|
|
42
44
|
"devDependencies": {
|