-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.04 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.04 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
{
"name": "openclaw-mem-recall",
"version": "1.0.2",
"description": "OpenClaw 工作区记忆系统 - 离线优先、Markdown 原生、结构化回忆",
"main": "dist/index.js",
"bin": {
"openclaw-mem-recall": "dist/bin/cli.js"
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"test": "vitest",
"lint": "eslint src/**/*.ts",
"prepare": "npm run build"
},
"keywords": [
"openclaw",
"memory",
"markdown",
"sqlite",
"fts5",
"offline"
],
"author": "jfd",
"license": "MIT",
"dependencies": {
"commander": "^12.0.0",
"sqlite3": "^5.1.7",
"chalk": "^5.3.0",
"ora": "^8.0.1",
"node-cron": "^3.0.3",
"openai": "^4.28.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/sqlite3": "^3.1.11",
"@types/node-cron": "^3.0.11",
"typescript": "^5.3.3",
"tsx": "^4.7.0",
"vitest": "^1.2.0",
"eslint": "^8.56.0"
},
"engines": {
"node": ">=18.0.0"
}
}