@agentconnect/ui 0.1.0 → 0.1.1
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 +1 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -60,4 +60,4 @@ Runs in any modern browser. An AgentConnect host must be available (CLI dev host
|
|
|
60
60
|
|
|
61
61
|
## Docs
|
|
62
62
|
|
|
63
|
-
See `docs/SDK.md` in the repo for the full SDK reference and `
|
|
63
|
+
See `docs/SDK.md` in the repo for the full SDK reference and `docs/PROTOCOL.md` for the protocol contract.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentconnect/ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://github.com/rayzhudev/agent-connect",
|
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
"exports": {
|
|
18
18
|
".": {
|
|
19
19
|
"import": "./dist/index.js",
|
|
20
|
-
"types": "./dist/index.d.ts"
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"default": "./dist/index.js"
|
|
21
22
|
}
|
|
22
23
|
},
|
|
23
24
|
"files": [
|
|
@@ -28,7 +29,7 @@
|
|
|
28
29
|
"dev": "tsc --watch"
|
|
29
30
|
},
|
|
30
31
|
"dependencies": {
|
|
31
|
-
"@agentconnect/sdk": "
|
|
32
|
+
"@agentconnect/sdk": "0.1.0"
|
|
32
33
|
},
|
|
33
34
|
"devDependencies": {
|
|
34
35
|
"typescript": "^5.6.2"
|