-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.99 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.99 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
64
65
66
67
68
{
"name": "titan-memory",
"version": "2.1.0",
"description": "Universal Cognitive Memory Layer - 5-layer AI memory system with intent-aware retrieval, causal graphs, and working memory",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"titan": "./dist/cli/index.js",
"titan-mcp": "./bin/titan-mcp.js",
"titan-dashboard": "./bin/titan-dashboard.js"
},
"scripts": {
"build": "tsc && npm run copy-static",
"copy-static": "node -e \"const fs=require('fs');const p=require('path');const s='src/dashboard/static';const d='dist/dashboard/static';fs.mkdirSync(d,{recursive:true});fs.readdirSync(s).forEach(f=>fs.copyFileSync(p.join(s,f),p.join(d,f)));console.log('Static files copied')\"",
"dev": "tsc --watch",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src/",
"start": "node dist/index.js",
"titan": "node dist/cli/index.js",
"dashboard": "node bin/titan-dashboard.js",
"build-plugin": "node scripts/build-plugin.js"
},
"keywords": [
"ai",
"memory",
"cognitive",
"claude",
"llm",
"engram",
"titans",
"continual-learning"
],
"author": "Travi",
"license": "Apache-2.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"better-sqlite3": "^12.8.0",
"chokidar": "^4.0.3",
"commander": "^12.0.0",
"express": "^4.21.0",
"jose": "^5.9.0",
"uuid": "^9.0.0",
"ws": "^8.16.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@types/uuid": "^9.0.0",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^10.1.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"typescript": "^5.4.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/TC407-api/Titan-Memory"
}
}