@haven_ai/connect 0.3.0-alpha.0 → 0.4.0-alpha.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/README.md +174 -15
- package/dist/cli.cjs +654 -84
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +655 -85
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +654 -84
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +44 -4
- package/dist/index.d.ts +44 -4
- package/dist/index.js +655 -85
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@haven_ai/connect",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0-alpha.0",
|
|
4
4
|
"description": "Haven connect — one command wires an AI agent to budgeted, non-custodial payments: installs the MCP runtime and generates the agent signing key locally, registering only the public address.",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=22"
|
|
@@ -54,9 +54,9 @@
|
|
|
54
54
|
"directory": "packages/connect"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@haven_ai/mcp": "0.
|
|
58
|
-
"@haven_ai/sdk": "0.
|
|
59
|
-
"@haven_ai/signer": "0.
|
|
57
|
+
"@haven_ai/mcp": "0.4.0-alpha.0",
|
|
58
|
+
"@haven_ai/sdk": "0.4.0-alpha.0",
|
|
59
|
+
"@haven_ai/signer": "0.4.0-alpha.0",
|
|
60
60
|
"ethers": "^6.13.0",
|
|
61
61
|
"yaml": "^2.9.0"
|
|
62
62
|
},
|