forked from supermemoryai/openclaw-supermemory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 727 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 727 Bytes
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
{
"name": "@supermemory/openclaw-supermemory",
"version": "1.0.5",
"type": "module",
"description": "OpenClaw Supermemory memory plugin",
"license": "MIT",
"dependencies": {
"supermemory": "^4.0.0",
"@sinclair/typebox": "0.34.47"
},
"scripts": {
"check-types": "tsc --noEmit",
"lint": "bunx @biomejs/biome ci .",
"lint:fix": "bunx @biomejs/biome check --write .",
"build:lib": "esbuild lib/validate.ts --bundle --minify --format=esm --platform=node --target=es2022 --external:node:crypto --outfile=lib/validate.js"
},
"peerDependencies": {
"openclaw": ">=2026.1.29"
},
"openclaw": {
"extensions": [
"./index.ts"
]
},
"devDependencies": {
"esbuild": "^0.27.2",
"typescript": "^5.9.3"
}
}