-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.87 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
{
"name": "memcore",
"version": "0.1.0",
"description": "MemCore — a memory engine for AI agents: chunks, atomic memories, typed graph, hybrid retrieval.",
"private": true,
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./server": {
"types": "./dist/api/server.d.ts",
"import": "./dist/api/server.js"
}
},
"files": ["dist", "db/schema.sql", "README.md"],
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "tsx watch src/api/main.ts",
"worker": "tsx watch src/queue/main.ts",
"start": "node dist/api/main.js",
"start:worker": "node dist/queue/main.js",
"build": "tsup",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:local": "MEMCORE_LOCAL_TEST=1 vitest run src/memcore.local.test.ts",
"eval:local": "tsx scripts/local-eval.ts",
"eval:minimax": "tsx scripts/minimax-eval.ts",
"db:reset": "tsx db/reset.ts",
"db:vector-index": "tsx scripts/create-vector-index.ts",
"reingest": "tsx scripts/reingest.ts",
"eval": "tsx evals/runner.ts",
"test:client": "tsx scripts/test-client.ts",
"test:e2e": "tsx scripts/test-client.ts e2e"
},
"dependencies": {
"@fastify/sensible": "^6.0.3",
"bullmq": "^5.76.4",
"fastify": "^5.2.1",
"fastify-type-provider-zod": "^4.0.2",
"gpt-tokenizer": "^2.8.1",
"ioredis": "^5.10.1",
"pino": "^9.5.0",
"pino-pretty": "^13.0.0",
"postgres": "^3.4.5",
"zod": "^3.24.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.5",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
}
}