-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.17 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.17 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
{
"name": "mempiper",
"version": "0.1.0",
"description": "Consolidate AI chat histories into OpenClaw-compatible memory files",
"type": "module",
"main": "./dist/cli.js",
"bin": {
"mempiper": "./dist/cli.js"
},
"files": [
"dist/"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build && npm test"
},
"keywords": [
"ai",
"memory",
"cli",
"openclaw",
"chat-history",
"claude",
"chatgpt",
"cursor",
"aider",
"mempiper"
],
"author": "themez",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/themez/mempiper"
},
"homepage": "https://github.com/themez/mempiper#readme",
"dependencies": {
"@clack/prompts": "^1.0.1",
"better-sqlite3": "^9.2.2",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"ora": "^8.0.1",
"yaml": "^2.4.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.8",
"@types/node": "^20.10.6",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
}
}