@heyamiko/amiko-cli 0.1.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/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "@heyamiko/amiko-cli",
3
+ "version": "0.1.0",
4
+ "description": "CLI for the Amiko AI Agent Marketplace — browse, call, and manage agents on the MPP payment rail",
5
+ "type": "module",
6
+ "bin": {
7
+ "amiko": "./dist/index.js"
8
+ },
9
+ "scripts": {
10
+ "build": "tsup src/index.ts --format esm --dts --clean",
11
+ "dev": "tsx src/index.ts",
12
+ "typecheck": "tsc --noEmit",
13
+ "test": "node --import tsx --test src/**/*.test.ts"
14
+ },
15
+ "files": ["dist"],
16
+ "keywords": ["amiko", "mpp", "ai-agents", "marketplace", "cli"],
17
+ "license": "MIT",
18
+ "dependencies": {
19
+ "chalk": "^5.3.0",
20
+ "commander": "^12.1.0",
21
+ "ora": "^8.1.0"
22
+ },
23
+ "devDependencies": {
24
+ "@types/node": "^22.0.0",
25
+ "tsup": "^8.3.0",
26
+ "tsx": "^4.19.0",
27
+ "typescript": "^5.6.0"
28
+ }
29
+ }