-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.63 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.63 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
{
"name": "@thirtieth/elizaos-plugin-cloudflare",
"version": "0.2.1",
"description": "Cloudflare integration for ElizaOS agents. Run agents behind a Cloudflare Worker with KV-backed response cache, replayable decision log, and an experimental cost-aware model router.",
"type": "module",
"main": "dist/plugin.js",
"module": "dist/plugin.js",
"types": "dist/plugin.d.ts",
"keywords": [
"elizaos-plugin",
"elizaos",
"cloudflare-workers",
"cloudflare-kv",
"anthropic",
"llm-cache",
"decision-log",
"ai-agent",
"cost-optimization"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thirtiethcenturysports/elizaos-plugin-cloudflare.git"
},
"license": "MIT",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/plugin.d.ts",
"default": "./dist/plugin.js"
}
}
},
"files": [
"dist",
"worker",
"wrangler.toml",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.check.json",
"dev:worker": "wrangler dev",
"deploy:worker": "wrangler deploy",
"test": "vitest run",
"test:watch": "vitest",
"bench": "tsx bench/run.ts"
},
"peerDependencies": {
"@elizaos/core": "^1.7.2"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.40.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260101.0",
"@elizaos/core": "1.7.2",
"@types/node": "^22.10.0",
"tsx": "^4.19.2",
"typescript": "^5.9.3",
"vitest": "^2.1.8",
"wrangler": "^3.95.0"
},
"engines": {
"node": ">=20"
}
}