-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.42 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.42 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "thoth-mem",
"version": "0.5.4",
"type": "module",
"description": "Persistent memory MCP server for AI coding agents",
"packageManager": "pnpm@11.20.0",
"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/opencode.js",
"bin": {
"thoth-mem": "dist/index.js"
},
"pi": {
"extensions": [
"./dist/pi.js"
],
"skills": [
"./integrations/pi/skills/thoth-mem"
]
},
"files": [
"dist",
"config.schema.json",
"README.md",
"integrations",
"plugin",
"benchmarks/manifest.json",
"benchmarks/report.schema.json",
"benchmarks/retrieval-report.schema.json",
"benchmarks/lexical-comparison-report.schema.json",
"benchmarks/import-ranking/report.schema.json",
"benchmarks/observation-pipeline/report.schema.json",
"benchmarks/lexical-comparison-baseline.json",
"benchmarks/lexical-recall-at-5-baseline.json"
],
"scripts": {
"build": "tsc --noEmit && node scripts/build.mjs",
"dev": "tsx watch src/index.ts",
"setup:codex:local": "pnpm run build && node scripts/setup-codex-local.mjs",
"integration:verify": "node scripts/verify-integration-package.mjs",
"integration:sync": "node scripts/sync-plugin-distribution.mjs",
"integration:smoke": "node scripts/verify-packed-plugins.mjs",
"benchmark:fixture": "node benchmarks/run.mjs",
"benchmark:observation": "node benchmarks/observation-pipeline/run.mjs",
"benchmark:import-ranking": "node benchmarks/import-ranking/run.mjs",
"benchmark:prepare:longmemeval": "node benchmarks/longmemeval/prepare.mjs",
"benchmark:longmemeval": "node benchmarks/longmemeval/run.mjs",
"benchmark:compare:longmemeval": "node benchmarks/longmemeval/compare.mjs",
"test": "node scripts/build.mjs && vitest run --config vitest.config.ts",
"test:unit": "vitest run --config vitest.unit.config.ts",
"test:integration": "node scripts/build.mjs && vitest run --config vitest.integration.config.ts",
"test:watch": "vitest --config vitest.config.ts",
"prepublishOnly": "pnpm run build && pnpm run integration:verify && pnpm test",
"version": "pnpm run integration:sync && pnpm run integration:verify && git add -- plugin",
"release:marketplace": "node scripts/publish-marketplace.mjs",
"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": ">=22.12.0"
},
"keywords": [
"mcp",
"memory",
"ai",
"coding-agent",
"sqlite",
"persistent-memory",
"pi-package"
],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@opencode-ai/plugin": "1.18.2",
"better-sqlite3": "^12.10.0",
"jsonc-parser": "3.3.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "0.84.4",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.9.1",
"esbuild": "^0.25.5",
"tsx": "^4.22.3",
"typescript": "^6.0.3",
"vitest": "^4.1.7",
"typebox": "1.3.7"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*",
"typebox": "*"
}
}