-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.7 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": "@openclaw/crabhelm",
"version": "0.0.0",
"private": true,
"description": "Cloudflare and AWS control planes for independently deployed OpenClaw agents.",
"type": "module",
"engines": {
"node": ">=22.19.0"
},
"scripts": {
"build": "tsgo --noEmit && pnpm worker:check && node --check web/app.js && node --check deploy/runtime-bridge.mjs && esbuild index.ts --bundle --platform=node --format=esm --target=node22 --outfile=dist/index.js --external:openclaw/*",
"check": "pnpm build && pnpm test && pnpm test:workers && pnpm aws:check",
"aws:build": "tsgo -p tsconfig.aws.json --noEmit && esbuild aws/server.ts --bundle --banner:js=\"import { createRequire as __crabhelmCreateRequire } from 'node:module'; const require = __crabhelmCreateRequire(import.meta.url);\" --platform=node --format=esm --target=node22 --outfile=dist/aws/server.js --external:aws-crt --external:bufferutil --external:pg-native --external:utf-8-validate && node --check dist/aws/server.js && node --input-type=module --eval \"const module = await import('./dist/aws/server.js'); if (typeof module.startAwsServer !== 'function') process.exit(1);\"",
"aws:check": "pnpm aws:build && pnpm aws:test",
"aws:fakeco:validate": "node deploy/aws/fakeco/foundation.mjs validate-profile",
"aws:test": "node --import tsx --test tests/aws/*.test.ts",
"dev": "tsx dev/server.ts",
"prepack": "pnpm build",
"test": "node --import tsx --test tests/*.test.ts",
"test:workers": "vitest run --config vitest.workers.config.ts",
"worker:check": "tsgo -p tsconfig.worker.json --noEmit && tsgo -p tsconfig.workers-test.json --noEmit && wrangler deploy --dry-run",
"worker:deploy": "wrangler deploy --config wrangler.production.jsonc",
"worker:types": "wrangler types --strict-vars false"
},
"peerDependencies": {
"openclaw": ">=2026.6.11"
},
"peerDependenciesMeta": {
"openclaw": {
"optional": true
}
},
"devDependencies": {
"@aws-sdk/client-s3": "3.1086.0",
"@aws-sdk/client-sqs": "3.1086.0",
"@cloudflare/vitest-pool-workers": "0.18.4",
"@cloudflare/workers-types": "5.20260714.1",
"@types/node": "26.1.1",
"@types/pg": "8.20.0",
"@types/ws": "8.18.1",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"esbuild": "0.28.1",
"jose": "6.2.3",
"pg": "8.22.0",
"tsx": "4.23.1",
"typebox": "1.3.6",
"vitest": "4.1.10",
"wrangler": "4.110.0",
"ws": "8.21.1"
},
"files": [
"dist/index.js",
"web",
"docs",
"deploy",
"README.md",
"openclaw.plugin.json"
],
"packageManager": "pnpm@11.13.0",
"openclaw": {
"extensions": [
"./dist/index.js"
],
"compat": {
"pluginApi": ">=2026.6.11"
}
}
}