-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.64 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
{
"name": "@upstash/agentkit-eve",
"version": "0.2.2",
"description": "Upstash AgentKit adapter for the Vercel Eve agent framework: memory tools, Redis-Search tools, a rate-limit gate, an Upstash Box sandbox backend, and cached tools.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/upstash/agentkit.git",
"directory": "packages/eve"
},
"homepage": "https://upstash.com/docs/redis/sdks/agentkit/eve",
"bugs": {
"url": "https://github.com/upstash/agentkit/issues"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./sandbox": {
"types": "./dist/sandbox.d.ts",
"import": "./dist/sandbox.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit"
},
"keywords": [
"upstash",
"eve",
"vercel",
"ai",
"agent",
"memory",
"sandbox",
"box",
"cache",
"tools"
],
"dependencies": {
"@upstash/agentkit-ai-sdk": "workspace:*",
"@upstash/agentkit-sdk": "workspace:*",
"zod": "^3.23.8 || ^4"
},
"devDependencies": {
"@upstash/box": "^0.5.1",
"@upstash/redis": "^1.38.0",
"ai": "7.0.0-beta.178",
"dotenv": "^16.4.5",
"eve": "^0.17.1"
},
"peerDependencies": {
"@upstash/box": ">=0.5.0",
"@upstash/redis": ">=1.38.0",
"eve": ">=0.0.1"
},
"peerDependenciesMeta": {
"@upstash/box": {
"optional": true
}
}
}