@agentconnect/cli 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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +11 -4
package/README.md CHANGED
@@ -55,4 +55,4 @@ The CLI can install and log in to providers on demand. You can override commands
55
55
 
56
56
  ## Docs
57
57
 
58
- See `docs/SDK.md` in the repo for the full SDK reference and `SPEC.md` for the protocol contract.
58
+ 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/cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "homepage": "https://github.com/rayzhudev/agent-connect",
@@ -12,11 +12,18 @@
12
12
  "bugs": {
13
13
  "url": "https://github.com/rayzhudev/agent-connect/issues"
14
14
  },
15
- "bin": {
16
- "agentconnect": "./dist/index.js"
17
- },
18
15
  "main": "./dist/index.js",
19
16
  "types": "./dist/index.d.ts",
17
+ "exports": {
18
+ ".": {
19
+ "import": "./dist/index.js",
20
+ "types": "./dist/index.d.ts",
21
+ "default": "./dist/index.js"
22
+ }
23
+ },
24
+ "bin": {
25
+ "agentconnect": "dist/index.js"
26
+ },
20
27
  "files": [
21
28
  "dist"
22
29
  ],