-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 877 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 877 Bytes
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
{
"name": "openbot",
"version": "0.2.12",
"private": false,
"type": "module",
"engines": {
"node": ">=20.12.0"
},
"scripts": {
"dev": "tsx watch src/app/cli.ts start",
"build": "tsc",
"start": "node dist/app/cli.js start"
},
"bin": {
"openbot": "./dist/app/cli.js start"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.33",
"@ai-sdk/openai": "^3.0.13",
"@modelcontextprotocol/sdk": "^1.29.0",
"@types/cors": "^2.8.19",
"ai": "^6.0.42",
"commander": "^14.0.2",
"cors": "^2.8.6",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.1",
"melony": "^0.3.7",
"zod": "^4.3.5"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.10.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}