@ametyst/cli 0.2.45 → 0.3.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 +1 -0
- package/dist/index.js +31177 -16922
- package/package.json +23 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ametyst/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Ametyst CLI — embedded MCP server, wallet ops, agent payments",
|
|
6
6
|
"type": "module",
|
|
@@ -36,24 +36,37 @@
|
|
|
36
36
|
]
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
|
+
"_comment_executor_sdk": "Executor engine, adopted as a NORMAL dependency with an EXACT pin (no ^, no ~) — not a sidecar, not an optionalDependency. Rationale: every user is expected to reach the feature, so on-demand installation would add complexity for nothing; the ~+138 MB on every install is a knowingly accepted cost. The exact pin is the stability mechanism (npm versions are immutable). ESCAPE HATCH, NOT COSTED AND NOT BUILT: @executor-js/sdk is MIT, so if we ever get stuck on an upstream bug we can vendor/fork it — noted here deliberately so nobody has to rediscover it, but it is explicitly out of the critical path today. NOTE (not blocking): as a normal dependency its postinstall scripts run during the `npm i -g @ametyst-dev/cli` the user launches deliberately — ordinary supply-chain risk, no longer execution triggered by an agent tool call, so we do NOT ship an installer with --ignore-scripts.",
|
|
39
40
|
"dependencies": {
|
|
41
|
+
"@executor-js/fumadb": "1.5.7",
|
|
42
|
+
"@executor-js/plugin-keychain": "1.5.40",
|
|
43
|
+
"@executor-js/plugin-mcp": "1.5.40",
|
|
44
|
+
"@executor-js/plugin-openapi": "1.5.40",
|
|
45
|
+
"@executor-js/sdk": "1.5.40",
|
|
40
46
|
"@modelcontextprotocol/sdk": "1.29.0",
|
|
41
47
|
"@napi-rs/keyring": "1.1.7",
|
|
42
|
-
"
|
|
48
|
+
"kysely": "0.28.17",
|
|
49
|
+
"mcp-use": "1.24.2",
|
|
50
|
+
"node-sqlite3-wasm": "0.8.60",
|
|
51
|
+
"zod": "4.3.6"
|
|
43
52
|
},
|
|
44
53
|
"_comment_optionalDependencies": "Injected at publish-time by publish-staging.yml / publish-prod.yml via `npm pkg set` with the version being published. Not committed here so pnpm install (locally + CI) doesn't try to resolve sub-package versions that may not exist on the registry between releases.",
|
|
45
54
|
"devDependencies": {
|
|
46
|
-
"@ametyst-dev/sdk-prod": "
|
|
55
|
+
"@ametyst-dev/sdk-prod": "0.9.0",
|
|
56
|
+
"@eslint/js": "9.18.0",
|
|
47
57
|
"@napi-rs/cli": "2.18.4",
|
|
48
58
|
"@types/node": "20.19.39",
|
|
49
59
|
"@types/prompts": "2.4.9",
|
|
50
60
|
"@zerodev/permissions": "5.6.3",
|
|
51
61
|
"@zerodev/sdk": "5.5.7",
|
|
52
62
|
"commander": "12.0.0",
|
|
63
|
+
"eslint": "9.18.0",
|
|
64
|
+
"globals": "15.14.0",
|
|
53
65
|
"prompts": "2.4.2",
|
|
54
66
|
"tsup": "8.5.1",
|
|
55
67
|
"tsx": "4.19.2",
|
|
56
68
|
"typescript": "5.2.2",
|
|
69
|
+
"typescript-eslint": "8.20.0",
|
|
57
70
|
"viem": "2.38.6",
|
|
58
71
|
"vitest": "3.2.6"
|
|
59
72
|
},
|
|
@@ -77,10 +90,10 @@
|
|
|
77
90
|
"esbuild@>=0.27.3 <0.28.1": "0.28.1"
|
|
78
91
|
},
|
|
79
92
|
"optionalDependencies": {
|
|
80
|
-
"@ametyst/cli-darwin-arm64": "0.
|
|
81
|
-
"@ametyst/cli-darwin-x64": "0.
|
|
82
|
-
"@ametyst/cli-linux-x64-gnu": "0.
|
|
83
|
-
"@ametyst/cli-win32-x64-msvc": "0.
|
|
93
|
+
"@ametyst/cli-darwin-arm64": "0.3.0",
|
|
94
|
+
"@ametyst/cli-darwin-x64": "0.3.0",
|
|
95
|
+
"@ametyst/cli-linux-x64-gnu": "0.3.0",
|
|
96
|
+
"@ametyst/cli-win32-x64-msvc": "0.3.0"
|
|
84
97
|
},
|
|
85
98
|
"scripts": {
|
|
86
99
|
"build:native": "cd native && cargo build --release && napi build --release",
|
|
@@ -90,8 +103,9 @@
|
|
|
90
103
|
"build:prod": "AMETYST_BUILD_ENV=prod tsup",
|
|
91
104
|
"dev": "tsup --watch",
|
|
92
105
|
"test": "vitest run",
|
|
93
|
-
"lint": "
|
|
106
|
+
"lint": "eslint \"src/**/*.ts\"",
|
|
94
107
|
"typecheck": "tsc --noEmit",
|
|
95
|
-
"perf:start-session": "tsx scripts/perf-start-session.ts"
|
|
108
|
+
"perf:start-session": "tsx scripts/perf-start-session.ts",
|
|
109
|
+
"lint:fix": "eslint \"src/**/*.ts\" --fix"
|
|
96
110
|
}
|
|
97
111
|
}
|