-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.46 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "thoth-mem",
"version": "0.4.8",
"type": "module",
"description": "Persistent memory MCP server for AI coding agents",
"packageManager": "pnpm@11.1.3",
"repository": {
"type": "git",
"url": "git+https://github.com/EremesNG/thoth-mem.git"
},
"homepage": "https://github.com/EremesNG/thoth-mem#readme",
"bugs": {
"url": "https://github.com/EremesNG/thoth-mem/issues"
},
"main": "dist/index.js",
"bin": {
"thoth-mem": "dist/index.js"
},
"files": [
"dist",
"config.schema.json",
"README.md",
"integrations",
"plugin",
".agents/plugins/marketplace.json",
".claude-plugin/marketplace.json"
],
"scripts": {
"build": "tsc --noEmit && node scripts/build.mjs && pnpm --dir dashboard build",
"dashboard:build": "pnpm --dir dashboard build",
"dashboard:typecheck": "pnpm --dir dashboard typecheck",
"dev": "tsx watch src/index.ts",
"eval:kg": "tsx src/evals/kg-quality.ts",
"eval:retrieval": "tsx src/evals/retrieval.ts",
"integration:sync": "node scripts/sync-integration-assets.mjs",
"integration:verify": "node scripts/verify-integration-package.mjs",
"release:notes": "tsx scripts/generate-release-notes.ts",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "pnpm run build && pnpm test",
"version": "pnpm run integration:sync && pnpm run integration:verify && git add -- plugin .agents/plugins/marketplace.json .claude-plugin/marketplace.json",
"release:patch": "npm version patch --ignore-scripts=false && git push --follow-tags",
"release:minor": "npm version minor --ignore-scripts=false && git push --follow-tags",
"release:major": "npm version major --ignore-scripts=false && git push --follow-tags"
},
"engines": {
"node": ">=18"
},
"keywords": [
"mcp",
"memory",
"ai",
"coding-agent",
"sqlite",
"persistent-memory"
],
"license": "MIT",
"dependencies": {
"@huggingface/transformers": "^4.2.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"better-sqlite3": "^12.10.0",
"cross-spawn": "7.0.6",
"jsonc-parser": "^3.3.1",
"onnxruntime-common": "1.24.3",
"onnxruntime-node": "1.24.3",
"smol-toml": "^1.7.0",
"sqlite-vec": "^0.1.9",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/cross-spawn": "6.0.6",
"@types/node": "^25.9.1",
"esbuild": "^0.25.5",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
}
}