-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.69 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@stan-chen/simple-biosphere",
"version": "0.2.9",
"description": "The Technical Constitution of the Digital Biosphere. A self-correcting system that consumes environmental data to optimize its own existence.",
"type": "module",
"main": "dist/cli.js",
"bin": {
"simple": "dist/cli.js",
"simple-daemon": "bin/simple-daemon"
},
"scripts": {
"start": "node --loader ts-node/esm src/cli.ts",
"start:brain": "npx tsx src/mcp_servers/brain/index.ts",
"daemon": "node --loader ts-node/esm src/daemon.ts",
"start:slack": "node --loader ts-node/esm src/interfaces/slack.ts",
"start:teams": "node --loader ts-node/esm src/interfaces/teams.ts",
"demo": "npx tsx demos/simple-cli-showcase/run_demo.ts",
"dev": "node --loader ts-node/esm --watch src/cli.ts",
"docs:build": "node docs/website/build.js",
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:stress": "vitest run tests/stress/",
"lint": "eslint src/ tests/",
"format": "prettier --write src/ tests/"
},
"keywords": [
"cli",
"agent",
"coding-assistant",
"llm",
"mcp",
"ai",
"openai",
"anthropic",
"gemini",
"litellm",
"aider"
],
"license": "MIT",
"engines": {
"node": ">=22.12.0"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.35",
"@ai-sdk/google": "^3.0.20",
"@ai-sdk/openai": "^3.0.25",
"@anthropic-ai/sdk": "^0.74.0",
"@browserbasehq/stagehand": "^3.0.8",
"@clack/prompts": "^0.7.0",
"@google/generative-ai": "^0.24.1",
"@hubspot/api-client": "^13.4.0",
"@kubernetes/client-node": "^1.4.0",
"@lancedb/lancedb": "^0.26.2",
"@linear/sdk": "^76.0.0",
"@modelcontextprotocol/sdk": "^1.0.0",
"@oclif/core": "^4.0.0",
"@slack/bolt": "^4.6.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node-fetch": "^2.6.13",
"@xenova/transformers": "^2.17.2",
"ai": "^6.0.67",
"apache-arrow": "^18.1.0",
"async-mutex": "^0.5.0",
"axios": "^1.13.6",
"better-sqlite3": "^12.6.2",
"body-parser": "^1.20.4",
"botbuilder": "^4.23.3",
"botframework-schema": "^4.23.3",
"chalk": "^5.3.0",
"chokidar": "^5.0.0",
"cors": "^2.8.6",
"cron-parser": "^5.5.0",
"diff": "^5.2.0",
"discord.js": "^14.25.1",
"dotenv": "^16.4.7",
"express": "^4.22.1",
"fast-glob": "^3.3.2",
"fast-levenshtein": "^3.0.0",
"glob": "^13.0.0",
"gpt-tokenizer": "^2.5.0",
"ioredis": "^5.10.0",
"jsonrepair": "^3.13.2",
"node-cron": "^4.2.1",
"node-fetch": "^2.7.0",
"openclaw": "^2026.2.9",
"ora": "^8.0.0",
"picocolors": "^1.0.0",
"proper-lockfile": "^4.1.2",
"redis": "^5.11.0",
"simple-git": "^3.22.0",
"simple-statistics": "^7.8.9",
"sqlite-vec": "^0.1.7-alpha.2",
"ts-morph": "^22.0.0",
"turndown": "^7.2.0",
"xero-node": "^13.4.0",
"yaml": "^2.8.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@oclif/test": "^4.0.0",
"@playwright/test": "^1.58.2",
"@types/better-sqlite3": "^7.6.13",
"@types/chokidar": "^1.7.5",
"@types/diff": "^5.2.3",
"@types/fast-levenshtein": "^0.0.4",
"@types/ioredis": "^4.28.10",
"@types/node": "^22.19.15",
"@types/node-cron": "^3.0.11",
"@types/proper-lockfile": "^4.1.4",
"@types/redis": "^4.0.10",
"@types/tar": "^6.1.13",
"@types/turndown": "^5.0.5",
"@types/uuid": "^10.0.0",
"marked": "^17.0.3",
"oclif": "^4.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.9.3",
"vitest": "^2.1.9"
},
"files": [
"dist",
"README.md",
"docs/assets/logo.jpeg"
]
}