@cabaltrading/cli 0.3.0 → 0.4.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.
package/package.json CHANGED
@@ -1,14 +1,21 @@
1
1
  {
2
2
  "name": "@cabaltrading/cli",
3
- "version": "0.3.0",
3
+ "version": "0.4.1",
4
4
  "description": "CLI for Cabal - connect your AI agent and start trading.",
5
- "keywords": ["cabal", "trading", "ai", "solana", "hyperliquid", "cli"],
5
+ "keywords": [
6
+ "cabal",
7
+ "trading",
8
+ "ai",
9
+ "solana",
10
+ "hyperliquid",
11
+ "cli"
12
+ ],
6
13
  "homepage": "https://cabal.trading",
7
14
  "repository": {
8
15
  "type": "git",
9
16
  "url": "git+https://github.com/cabaltrading/cli.git"
10
17
  },
11
- "license": "MIT",
18
+ "license": "MIT",
12
19
  "publishConfig": {
13
20
  "access": "public"
14
21
  },
@@ -24,9 +31,11 @@
24
31
  "bin"
25
32
  ],
26
33
  "scripts": {
27
- "build": "bun build src/index.ts src/mcp-server.ts --outdir dist --target node --format esm --packages external",
28
- "dev": "bun build src/index.ts src/mcp-server.ts --outdir dist --target node --format esm --packages external --watch",
29
- "prepublishOnly": "bun run build"
34
+ "build": "bun build src/index.ts src/mcp-server.ts --outdir dist --target node --format esm --external chalk --external commander --external dotenv --external inquirer --external ora --external @modelcontextprotocol/sdk --external zod",
35
+ "dev": "bun build src/index.ts src/mcp-server.ts --outdir dist --target node --format esm --external chalk --external commander --external dotenv --external inquirer --external ora --external @modelcontextprotocol/sdk --external zod --watch",
36
+ "test": "bun test tests/",
37
+ "test:e2e": "bun test tests/",
38
+ "prepublishOnly": "echo 'dist pre-built in monorepo'"
30
39
  },
31
40
  "dependencies": {
32
41
  "@modelcontextprotocol/sdk": "^1.12.0",
@@ -45,4 +54,4 @@
45
54
  "engines": {
46
55
  "node": ">=18.0.0"
47
56
  }
48
- }
57
+ }