-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 974 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 974 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
{
"name": "oread-cli",
"version": "0.1.0",
"type": "module",
"bin": {
"oread": "./dist/oread.js"
},
"scripts": {
"build": "esbuild bin/oread.js --bundle --platform=node --outfile=dist/oread.js --packages=external --loader:.jsx=jsx --format=esm",
"dev": "npm run build && node dist/oread.js",
"watch": "esbuild bin/oread.js --bundle --platform=node --outfile=dist/oread.js --packages=external --loader:.jsx=jsx --format=esm --watch"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.82.0",
"@google/generative-ai": "^0.24.1",
"cors": "^2.8.6",
"dotenv": "^16.4.5",
"express": "^5.2.1",
"ink": "^5.0.1",
"ink-divider": "^4.1.1",
"ink-select-input": "^6.2.0",
"ink-text-input": "^6.0.0",
"ollama": "^0.6.3",
"openai": "^6.33.0",
"react": "^18.3.1",
"sqlite": "^5.1.1",
"sqlite3": "^6.0.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"esbuild": "^0.25.12",
"tsx": "^4.21.0"
}
}