-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.42 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.42 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
{
"name": "@elizaos/gcp-examples",
"version": "2.0.0-beta.0",
"description": "elizaOS GCP Cloud Run worker (TypeScript) and test client",
"type": "module",
"main": "dist/handler.js",
"scripts": {
"test": "bun run test-client.ts --check",
"test-client": "bun run test-client.ts",
"test-client:stream": "bun run test-client.ts --stream",
"build": "esbuild handler.ts --bundle --platform=node --target=node20 --outfile=dist/handler.js --format=esm --external:@elizaos/core --external:@elizaos/plugin-openai --external:@elizaos/plugin-sql --banner:js=\"import { createRequire } from 'module'; const require = createRequire(import.meta.url);\"",
"build:watch": "npm run build -- --watch",
"dev": "tsx handler.ts",
"start": "node dist/handler.js",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"docker:build": "docker build -t eliza-worker-ts .",
"docker:run": "docker run -p 8080:8080 -e OPENAI_API_KEY=$OPENAI_API_KEY eliza-worker-ts",
"lint": "bunx @biomejs/biome check --write --unsafe .",
"lint:check": "bunx @biomejs/biome check ."
},
"dependencies": {
"@elizaos/core": "workspace:*",
"@elizaos/plugin-openai": "workspace:*",
"@elizaos/plugin-sql": "workspace:*",
"uuid": "^14.0.0"
},
"devDependencies": {
"@types/node": "^25.0.3",
"esbuild": "^0.28.0",
"tsx": "^4.19.0",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=24.0.0"
}
}