-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.27 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.27 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
{
"name": "@cozeloop/ai",
"version": "0.0.11",
"description": "Official Node.js SDK of CozeLoop | 扣子罗盘官方 Node.js SDK",
"keywords": [
"cozeloop",
"ai",
"nodejs",
"sdk",
"typescript"
],
"homepage": "https://github.com/coze-dev/cozeloop-js/tree/main/packages/cozeloop-ai",
"bugs": {
"url": "https://github.com/coze-dev/cozeloop-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/coze-dev/cozeloop-js.git",
"directory": "packages/cozeloop-ai"
},
"license": "MIT",
"author": "qihai <mocayo@qq.com>",
"exports": {
".": {
"types": "./dist/typings/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/typings/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md",
"CHANGELOG.md",
"README.zh-CN.md"
],
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"lint": "eslint ./ --cache",
"prepublishOnly": "npm run build",
"start": "vitest watch",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"vitest": "vitest"
},
"dependencies": {
"@opentelemetry/api": "~1.9.0",
"@opentelemetry/core": "~1.30.1",
"@opentelemetry/resources": "~1.30.1",
"@opentelemetry/sdk-node": "~0.57.2",
"@opentelemetry/sdk-trace-base": "~1.30.1",
"@opentelemetry/sdk-trace-node": "~1.30.1",
"form-data": "^4.0.4",
"jsonwebtoken": "^9.0.2",
"nanoid": "^3.x",
"node-fetch": "^2.x",
"nunjucks": "^3.2.4",
"promise-retry": "~2.0.1",
"quick-lru": "^5.x",
"remeda": "^2.21.2",
"set-interval-async": "^3.0.3"
},
"devDependencies": {
"@loop-infra/eslint-config": "workspace:*",
"@loop-infra/ts-config": "workspace:*",
"@loop-infra/vitest-config": "workspace:*",
"@types/jsonwebtoken": "^9.0.0",
"@types/node": "^24",
"@types/node-fetch": "^2.x",
"@types/nunjucks": "^3.2.6",
"@types/promise-retry": "~1.1.6",
"@vitest/coverage-v8": "~2.1.4",
"axios": "^1.8.2",
"dotenv": "~16.4.7",
"msw": "^2.7.3",
"rimraf": "~3.0.2",
"tsup": "^8.0.1",
"typescript": "^5.5.3",
"vitest": "~2.1.4"
},
"peerDependencies": {
"axios": "^1.7.1"
}
}