-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.55 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
{
"name": "@maitrix/memory-core",
"version": "0.1.0",
"license": "MIT",
"private": true,
"type": "module",
"description": "Standalone memory core service for multi-app AI context and profile memory",
"engines": {
"node": ">=18"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "tsx src/server.ts",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "tsx --test src/service.test.ts src/retrieval/*.test.ts src/integrations/*.test.ts src/providers/hybrid-search.test.ts src/extraction/*.test.ts",
"test:pg": "tsx --test src/providers/postgres-provider.test.ts",
"test:all": "npm test && npm run test:pg",
"bench": "tsx bench/run.ts",
"bench:small": "tsx bench/run.ts --size=small --json=bench/out/baseline-small.json",
"bench:large": "tsx bench/run.ts --size=large --json=bench/out/baseline-large.json",
"bench:dataset": "tsx bench/dataset/generate.ts",
"bench:typecheck": "tsc -p bench/tsconfig.json --noEmit",
"verify:mcp": "tsx src/integrations/verify-mcp.ts",
"integrations:schemas": "tsx src/integrations/generate-schemas.ts",
"mcp": "tsx src/integrations/mcp-server.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.30.0",
"express": "^5.0.1",
"pg": "8.22.0",
"zod": "^3.25.76"
},
"optionalDependencies": {
"@huggingface/transformers": "4.2.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^20.19.27",
"@types/pg": "8.20.0",
"tsx": "^4.20.5",
"typescript": "^5.6.3"
}
}