-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.18 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.18 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
{
"name": "elizaos-cloudflare-worker",
"version": "2.0.0-beta.0",
"description": "elizaOS AI agent running on Cloudflare Workers using canonical runtime.messageService.handleMessage()",
"type": "module",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"deploy:staging": "wrangler deploy --env staging",
"deploy:production": "wrangler deploy --env production",
"test": "bun run test-client.ts",
"test:stream": "bun run test-client.ts --stream",
"tail": "wrangler tail",
"secret": "wrangler secret put OPENAI_API_KEY",
"lint": "bunx @biomejs/biome check --write --unsafe .",
"lint:check": "bunx @biomejs/biome check .",
"typecheck": "echo 'Cloudflare Workers use wrangler for type checking'",
"build": "bun run typecheck"
},
"dependencies": {
"@elizaos/core": "workspace:*",
"@elizaos/plugin-openai": "workspace:*",
"uuid": "^14.0.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241205.0",
"@types/uuid": "^11.0.0",
"wrangler": "^3.99.0"
},
"keywords": [
"elizaos",
"cloudflare",
"workers",
"ai",
"agent",
"messageService"
],
"author": "",
"license": "MIT"
}