@bike4mind/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,111 @@
1
+ {
2
+ "name": "@bike4mind/cli",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "description": "Interactive CLI tool for Bike4Mind with ReAct agents",
6
+ "license": "UNLICENSED",
7
+ "author": "Bike4Mind",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/bike4mind/lumina5.git"
11
+ },
12
+ "homepage": "https://github.com/bike4mind/lumina5#readme",
13
+ "bugs": "https://github.com/bike4mind/lumina5/issues",
14
+ "keywords": [
15
+ "cli",
16
+ "ai",
17
+ "bike4mind",
18
+ "agent",
19
+ "mcp",
20
+ "react-agent"
21
+ ],
22
+ "bin": {
23
+ "b4m": "./bin/bike4mind-cli.mjs",
24
+ "bike4mind": "./bin/bike4mind-cli.mjs"
25
+ },
26
+ "files": [
27
+ "dist",
28
+ "bin"
29
+ ],
30
+ "scripts": {
31
+ "dev": "tsx src/index.tsx",
32
+ "build": "tsup",
33
+ "typecheck": "tsc --noEmit",
34
+ "start": "node dist/index.js",
35
+ "prepublishOnly": "pnpm build"
36
+ },
37
+ "dependencies": {
38
+ "@anthropic-ai/sdk": "^0.22.0",
39
+ "@aws-sdk/client-apigatewaymanagementapi": "3.654.0",
40
+ "@aws-sdk/client-bedrock-runtime": "3.654.0",
41
+ "@aws-sdk/client-lambda": "3.654.0",
42
+ "@aws-sdk/client-s3": "3.654.0",
43
+ "@aws-sdk/client-sqs": "3.654.0",
44
+ "@aws-sdk/client-transcribe": "3.654.0",
45
+ "@aws-sdk/credential-provider-node": "3.654.0",
46
+ "@aws-sdk/node-http-handler": "^3.374.0",
47
+ "@aws-sdk/s3-request-presigner": "3.654.0",
48
+ "@casl/ability": "^6.5.0",
49
+ "@google/genai": "^1.27.0",
50
+ "@google/generative-ai": "^0.21.0",
51
+ "@joplin/turndown-plugin-gfm": "^1.0.62",
52
+ "@mendable/firecrawl-js": "^1.29.3",
53
+ "@modelcontextprotocol/sdk": "^1.7.0",
54
+ "@octokit/rest": "^22.0.0",
55
+ "@opensearch-project/opensearch": "2.11.0",
56
+ "async-mutex": "^0.5.0",
57
+ "axios": "^1.13.2",
58
+ "bcryptjs": "^2.4.3",
59
+ "cheerio": "1.0.0-rc.12",
60
+ "csv-parse": "^5.5.6",
61
+ "dayjs": "^1.11.13",
62
+ "diff": "^8.0.2",
63
+ "dotenv": "^16.3.1",
64
+ "eventsource-parser": "^3.0.6",
65
+ "file-type": "^18.7.0",
66
+ "fuse.js": "^7.1.0",
67
+ "ink": "^6.5.1",
68
+ "ink-select-input": "^6.2.0",
69
+ "ink-spinner": "^5.0.0",
70
+ "ink-text-input": "^6.0.0",
71
+ "jsonwebtoken": "^9.0.2",
72
+ "lodash": "^4.17.21",
73
+ "mammoth": "^1.11.0",
74
+ "marked": "^15.0.11",
75
+ "mathjs": "^14.2.0",
76
+ "mime-types": "^2.1.35",
77
+ "mongoose": "^8.8.3",
78
+ "ollama": "^0.5.12",
79
+ "openai": "^5.12.2",
80
+ "p-limit": "^6.2.0",
81
+ "qrcode": "^1.5.4",
82
+ "react": "^19.2.3",
83
+ "sharp": "^0.32.6",
84
+ "speakeasy": "^2.0.0",
85
+ "tiktoken": "^1.0.16",
86
+ "turndown": "^7.2.0",
87
+ "unpdf": "^0.10.0",
88
+ "uuid": "^9.0.1",
89
+ "voyageai": "^0.0.4",
90
+ "xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz",
91
+ "yauzl": "^3.1.3",
92
+ "zod": "^3.25.76",
93
+ "zod-validation-error": "^1.5.0",
94
+ "zustand": "^4.5.4"
95
+ },
96
+ "devDependencies": {
97
+ "@bike4mind/agents": "workspace:*",
98
+ "@bike4mind/common": "workspace:*",
99
+ "@bike4mind/mcp": "workspace:*",
100
+ "@bike4mind/services": "workspace:*",
101
+ "@bike4mind/utils": "workspace:*",
102
+ "@types/diff": "^5.0.9",
103
+ "@types/jsonwebtoken": "^9.0.4",
104
+ "@types/node": "^22.9.0",
105
+ "@types/react": "^19.2.7",
106
+ "@types/uuid": "^9.0.7",
107
+ "tsup": "^8.5.1",
108
+ "tsx": "^4.21.0",
109
+ "typescript": "^5.9.3"
110
+ }
111
+ }