forked from obra/claude-memory-extractor
-
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.2 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.2 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": "claude-memory",
"version": "1.0.0",
"description": "Multi-dimensional memory extraction system for Claude Code conversations",
"main": "dist/cli.js",
"bin": {
"claude-memory": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/cli.ts",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"claude",
"memory",
"extraction",
"ai",
"conversation",
"learning",
"introspection"
],
"author": "Jesse Vincent <[email protected]> & Claude (Anthropic)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/obra/claude-memory.git"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"commander": "^11.0.0",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.50.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"tsx": "^4.0.0",
"typescript": "^5.2.0"
}
}