-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.07 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.07 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
{
"name": "@cozeloop/langchain",
"version": "0.0.3",
"description": "Integration LangChain with CozeLoop | 扣子罗盘 LangChain 集成",
"keywords": [
"cozeloop",
"langchain",
"trace"
],
"homepage": "https://github.com/coze-dev/cozeloop-js/tree/main/packages/cozeloop-langchain",
"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-langchain"
},
"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"
],
"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/exporter-trace-otlp-http": "~0.57.2",
"@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",
"arktype": "^2.1.29"
},
"devDependencies": {
"@langchain/core": "^1.1.8",
"@langchain/langgraph": "^1.0.7",
"@langchain/openai": "^1.2.0",
"@loop-infra/eslint-config": "workspace:*",
"@loop-infra/ts-config": "workspace:*",
"@loop-infra/vitest-config": "workspace:*",
"@types/node": "^20",
"@vitest/coverage-v8": "~2.1.4",
"langchain": "^1.2.3",
"msw": "^2.7.3",
"tsup": "^8.0.1",
"typescript": "^5.5.3",
"vitest": "~2.1.4"
},
"peerDependencies": {
"@langchain/core": "^0.3.61 || ^1.0.0",
"@langchain/langgraph": "^0.3.1 || ^1.0.0"
}
}