-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.47 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.47 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
{
"name": "@supermemory/openclaw-supermemory",
"version": "2.1.12",
"type": "module",
"description": "OpenClaw Supermemory memory plugin",
"license": "MIT",
"dependencies": {
"supermemory": "^4.0.0",
"@sinclair/typebox": "0.34.47"
},
"files": [
"README.md",
"openclaw.plugin.json",
"index.ts",
"client.ts",
"commands",
"hooks",
"tools",
"config.ts",
"logger.ts",
"memory.ts",
"runtime.ts",
"types",
"lib/validate.d.ts",
"lib/validate.js",
"dist"
],
"scripts": {
"build": "npm run build:runtime && npm run build:lib",
"build:runtime": "esbuild index.ts --bundle --format=esm --platform=node --target=es2022 --external:openclaw --external:openclaw/* --external:supermemory --outfile=dist/index.js",
"check-types": "tsc --noEmit",
"lint": "bunx @biomejs/biome ci .",
"lint:fix": "bunx @biomejs/biome check --write .",
"build:lib": "node -e \"const fs=require('node:fs'); fs.accessSync('lib/validate.js'); fs.accessSync('lib/validate.d.ts')\"",
"prepack": "npm run build"
},
"peerDependencies": {
"openclaw": ">=2026.5.7"
},
"openclaw": {
"extensions": [
"./index.ts"
],
"runtimeExtensions": [
"./dist/index.js"
],
"compat": {
"pluginApi": ">=2026.5.7",
"minGatewayVersion": "2026.5.7"
},
"build": {
"openclawVersion": "2026.5.7"
}
},
"repository": {
"type": "git",
"url": "https://github.com/supermemoryai/openclaw-supermemory.git"
},
"devDependencies": {
"esbuild": "^0.27.2",
"typescript": "^5.9.3"
}
}