-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 971 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 971 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
40
{
"name": "mem-x",
"version": "0.1.0",
"description": "Self-evolving AI long-term memory system",
"type": "module",
"bin": {
"mem-x": "./dist/cli.js"
},
"scripts": {
"build": "tsc && cp src/debug/dashboard.html dist/debug/",
"dev": "tsc --watch",
"mem-x": "node --import tsx src/cli.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/ tests/",
"lint:fix": "eslint src/ tests/ --fix"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"better-sqlite3": "^12",
"commander": "^14",
"openai": "^6",
"sqlite-vec": "^0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/better-sqlite3": "^7",
"@types/node": "^25",
"@vitest/coverage-v8": "^4.0.18",
"esbuild": "^0.27.3",
"eslint": "^10.0.1",
"tsx": "^4",
"typescript": "^5",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.18"
}
}