forked from lemony-ai/cascadeflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 785 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 785 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
{
"name": "cascadeflow-nodejs-examples",
"version": "0.1.0",
"private": true,
"description": "Node.js examples for @cascadeflow/core",
"type": "module",
"scripts": {
"basic": "tsx basic-usage.ts",
"tools": "tsx tool-calling.ts",
"multi": "tsx multi-provider.ts"
},
"dependencies": {
"@cascadeflow/core": "workspace:*"
},
"devDependencies": {
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"dotenv": "^16.3.1",
"@types/node": "^20.10.0"
},
"peerDependencies": {
"openai": "^4.0.0",
"@anthropic-ai/sdk": "^0.30.0",
"groq-sdk": "^0.5.0"
},
"peerDependenciesMeta": {
"openai": {
"optional": true
},
"@anthropic-ai/sdk": {
"optional": true
},
"groq-sdk": {
"optional": true
}
}
}