-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.66 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.66 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
{
"name": "openclaw-cloudflare-vectorize-memory",
"version": "0.1.10",
"description": "OpenClaw memory plugin for Cloudflare Vectorize and Workers AI embeddings.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"files": [
"cli-metadata.ts",
"dist",
"hooks",
"openclaw.plugin.json",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js"
}
},
"engines": {
"node": ">=22"
},
"keywords": [
"openclaw",
"plugin",
"cloudflare",
"vectorize",
"workers-ai",
"memory"
],
"openclaw": {
"extensions": [
"./dist/index.js"
],
"hooks": [
"hooks/cloudflare-memory-bootstrap"
]
},
"scripts": {
"build": "vite build && tsc -p tsconfig.build.json",
"test": "vitest run --exclude tests/live-integration.test.ts",
"test:integration": "npm run build && vitest run tests/live-integration.test.ts",
"test:watch": "vitest --exclude tests/live-integration.test.ts",
"check": "tsc -p tsconfig.json --noEmit",
"publish:npmjs": "npm run check && npm test && npm run build && npm publish --access public"
},
"peerDependencies": {
"openclaw": ">=2026.4.11"
},
"peerDependenciesMeta": {
"openclaw": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "2.4.11",
"@types/node": "25.6.0",
"openclaw": "2026.4.11",
"typescript": "6.0.2",
"vite": "8.0.8",
"vitest": "4.1.4"
},
"dependencies": {
"@sinclair/typebox": "0.34.49",
"zod": "4.3.6"
},
"packageManager": "pnpm@11.0.0-rc.0+sha512.1f08eadeea025e91448de6d5dee42a6c94764257000c043a9e36b8ff12849a72ebcb9c65fc1885094747249e52f53d8b73ada1181446bba81866810c8a4d3f6c"
}