botanary 0.4.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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/dist/package.json +0 -48
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "botanary",
3
3
  "type": "module",
4
- "version": "0.4.0",
4
+ "version": "0.4.1",
5
5
  "description": "Botanary from your terminal - a guided CLI over the same wallet and agent lanes botanary-mcp exposes to a coding agent.",
6
6
  "license": "UNLICENSED",
7
7
  "homepage": "https://docs.botanary.xyz",
@@ -37,7 +37,7 @@
37
37
  "vitest": "^2.1.8"
38
38
  },
39
39
  "scripts": {
40
- "build": "tsc -p tsconfig.build.json",
40
+ "build": "rm -rf dist && tsc -p tsconfig.build.json",
41
41
  "dev": "node --watch -r @swc-node/register bin/botanary.ts",
42
42
  "start": "node dist/bin/botanary.js",
43
43
  "typecheck": "tsc -p tsconfig.json --noEmit",
package/dist/package.json DELETED
@@ -1,48 +0,0 @@
1
- {
2
- "name": "botanary",
3
- "type": "module",
4
- "version": "0.3.0",
5
- "description": "Botanary from your terminal - a guided CLI over the same wallet and agent lanes botanary-mcp exposes to a coding agent.",
6
- "license": "UNLICENSED",
7
- "homepage": "https://docs.botanary.xyz",
8
- "keywords": [
9
- "botanary",
10
- "cli",
11
- "wallet"
12
- ],
13
- "bin": {
14
- "botanary": "dist/bin/botanary.js"
15
- },
16
- "files": [
17
- "dist",
18
- "README.md"
19
- ],
20
- "engines": {
21
- "node": ">=22.0.0"
22
- },
23
- "scripts": {
24
- "build": "tsc -p tsconfig.build.json",
25
- "prepare": "tsc -p tsconfig.build.json",
26
- "dev": "node --watch -r @swc-node/register bin/botanary.ts",
27
- "start": "node dist/bin/botanary.js",
28
- "typecheck": "tsc -p tsconfig.json --noEmit",
29
- "test": "vitest run",
30
- "test:watch": "vitest"
31
- },
32
- "dependencies": {
33
- "@clack/prompts": "^0.9.1",
34
- "botanary-mcp": "^0.7.0",
35
- "cli-table3": "^0.6.5",
36
- "commander": "^13.1.0",
37
- "figlet": "^1.7.0",
38
- "gradient-string": "^3.0.0",
39
- "picocolors": "^1.1.1"
40
- },
41
- "devDependencies": {
42
- "@swc-node/register": "^1.10.9",
43
- "@types/figlet": "^1.7.0",
44
- "@types/node": "^22.10.5",
45
- "typescript": "^5.7.3",
46
- "vitest": "^2.1.8"
47
- }
48
- }