@ametyst/cli 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/dist/index.js +1 -1
  2. package/package.json +7 -4
package/dist/index.js CHANGED
@@ -113853,7 +113853,7 @@ async function statusCommand() {
113853
113853
  }
113854
113854
 
113855
113855
  // src/index.ts
113856
- var CLI_VERSION = true ? "0.2.0" : "0.0.0-dev";
113856
+ var CLI_VERSION = true ? "0.2.1" : "0.0.0-dev";
113857
113857
  var program2 = new Command();
113858
113858
  program2.name("ametyst").description("Ametyst CLI \u2014 local wallet + MCP server for agents").version(CLI_VERSION);
113859
113859
  program2.command("login").description("Validate API key, store it securely, and register Ametyst MCP in Claude Code").option("--api-key <key>", "API key from /join page").action(loginCommand);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ametyst/cli",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "private": false,
5
5
  "description": "Ametyst CLI — embedded MCP server, wallet ops, agent payments",
6
6
  "type": "module",
@@ -14,6 +14,9 @@
14
14
  "index.d.ts",
15
15
  "native"
16
16
  ],
17
+ "imports": {
18
+ "#sdk": "@ametyst-dev/sdk-prod"
19
+ },
17
20
  "engines": {
18
21
  "node": ">=20",
19
22
  "pnpm": ">=9"
@@ -57,9 +60,9 @@
57
60
  "registry": "https://registry.npmjs.org"
58
61
  },
59
62
  "optionalDependencies": {
60
- "@ametyst/cli-darwin-arm64": "0.2.0",
61
- "@ametyst/cli-darwin-x64": "0.2.0",
62
- "@ametyst/cli-linux-x64-gnu": "0.2.0"
63
+ "@ametyst/cli-darwin-arm64": "0.2.1",
64
+ "@ametyst/cli-darwin-x64": "0.2.1",
65
+ "@ametyst/cli-linux-x64-gnu": "0.2.1"
63
66
  },
64
67
  "scripts": {
65
68
  "build:native": "cd native && cargo build --release && napi build --release",