-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.71 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
{
"name": "@agentkitai/agentlens-sdk",
"version": "0.14.6",
"description": "TypeScript SDK for the AgentLens API — programmatic access to agent observability data",
"type": "module",
"license": "MIT",
"author": "Amit Paz",
"repository": {
"type": "git",
"url": "https://github.com/agentkitai/agentlens.git",
"directory": "packages/sdk"
},
"homepage": "https://github.com/agentkitai/agentlens/tree/main/packages/sdk",
"bugs": {
"url": "https://github.com/agentkitai/agentlens/issues"
},
"keywords": [
"agentlens",
"ai-agents",
"observability",
"sdk",
"client",
"typescript",
"api-client"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./openai": {
"import": "./dist/openai.js",
"types": "./dist/openai.d.ts"
},
"./vercel": {
"import": "./dist/vercel.js",
"types": "./dist/vercel.d.ts"
},
"./langchain": {
"import": "./dist/langchain.js",
"types": "./dist/langchain.d.ts"
},
"./llamaindex": {
"import": "./dist/llamaindex.js",
"types": "./dist/llamaindex.d.ts"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -b",
"dev": "tsc -b --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@agentkitai/agentlens-core": "workspace:*",
"@agentkitai/pricing": "workspace:*"
},
"devDependencies": {
"@langchain/core": "^1.2.1"
},
"peerDependencies": {
"@langchain/core": ">=0.1.0"
},
"peerDependenciesMeta": {
"@langchain/core": {
"optional": true
}
}
}