@cmdoss/suipay-mcp 0.2.0 → 0.2.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 +2 -2
  2. package/package.json +11 -2
package/README.md CHANGED
@@ -5,13 +5,13 @@ buyer-funded spend account. The buyer owns the account. The agent holds the
5
5
  delegate key and can spend only under the on-chain grant (recipient bind,
6
6
  per-payment cap, budget).
7
7
 
8
- Pin `@cmdoss/suipay-mcp@0.2.0` in MCP config. `1.0.1` remains on the
8
+ Pin `@cmdoss/suipay-mcp@0.2.1` in MCP config. `1.0.1` remains on the
9
9
  registry as a historical release; do not install it for new agents.
10
10
 
11
11
  ## Install
12
12
 
13
13
  ```bash
14
- claude mcp add --scope user suipay -- npx -y @cmdoss/suipay-mcp@0.2.0
14
+ claude mcp add --scope user suipay -- npx -y @cmdoss/suipay-mcp@0.2.1
15
15
  ```
16
16
 
17
17
  No wallet secret belongs in this command or MCP config. There is no
package/package.json CHANGED
@@ -1,13 +1,22 @@
1
1
  {
2
2
  "name": "@cmdoss/suipay-mcp",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "type": "module",
5
5
  "description": "SuiPay MCP — pay MPP-gated APIs from a spend-account grant with an agent-held delegate key.",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js"
12
+ }
13
+ },
6
14
  "bin": {
7
15
  "suipay": "dist/bin/suipay.js"
8
16
  },
9
17
  "files": [
10
- "dist"
18
+ "dist",
19
+ "README.md"
11
20
  ],
12
21
  "publishConfig": {
13
22
  "access": "public",