-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 891 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 891 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
30
31
32
33
34
35
36
37
38
39
{
"name": "memsense",
"version": "0.1.0",
"private": true,
"type": "module",
"license": "MIT",
"description": "Memsense memory plugin for OpenClaw",
"peerDependencies": {
"openclaw": ">=2026.4"
},
"peerDependenciesMeta": {
"openclaw": {
"optional": true
}
},
"scripts": {
"test": "node --test test/*.test.mjs",
"rehearsal:smoke": "bash scripts/rehearsal-smoke.sh",
"server": "node src/server/index.js",
"worker": "node src/worker/index.js",
"tag-worker": "node src/worker/tag-worker.js",
"db:migrate": "node scripts/db-migrate.mjs",
"smoke:api": "node scripts/api-smoke.mjs",
"build": "tsc"
},
"dependencies": {
"express": "^4.21.2",
"pg": "^8.13.3"
},
"openclaw": {
"extensions": [
"./index.ts"
]
},
"devDependencies": {
"@types/node": "^25.7.0",
"typescript": "^6.0.3"
}
}