-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 812 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 812 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
{
"name": "@cozeloop/ai-node-example",
"version": "0.0.1",
"description": "@cozeloop/ai node examples",
"author": "qihai <qihai@bytedance.com>",
"scripts": {
"build": "tsc -b tsconfig.json",
"lint": "eslint ./ --cache",
"ready": "rush rebuild -T .",
"run:all": "tsx ./src/index.ts",
"test": "echo 0",
"test:cov": "exit 0",
"tsx": "tsx"
},
"dependencies": {
"@cozeloop/ai": "workspace:*",
"@opentelemetry/api": "~1.9.0",
"axios": "^1.8.2",
"openai": "^4.92.0"
},
"devDependencies": {
"@loop-infra/eslint-config": "workspace:*",
"@loop-infra/ts-config": "workspace:*",
"@loop-infra/vitest-config": "workspace:*",
"@types/node": "^24",
"dotenv": "~16.4.7",
"msw": "^2.7.3",
"tsx": "^4.20.5",
"typescript": "^5.5.3"
}
}