-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
150 lines (150 loc) · 4.17 KB
/
package.json
File metadata and controls
150 lines (150 loc) · 4.17 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "prism-mcp-server",
"version": "16.1.1",
"mcpName": "io.github.dcostenco/prism-coder",
"description": "Prism Coder — Cognitive memory + tool-calling intelligence for AI agents. Mind Palace persistent memory (BFCL Gold Certified, 100% Tool-Call Accuracy, 54 Agent Skills, Zero-Search HDC/HRR retrieval, HIPAA-hardened local-first storage, SLERP-optimized GRPO alignment) plus the prism-coder:7b / 14b open-weights LLM fleet.",
"module": "index.ts",
"type": "module",
"main": "dist/server.js",
"bin": {
"prism": "dist/cli.js",
"prism-coder": "dist/server.js",
"prism-mcp-server": "dist/server.js",
"prism-import": "dist/utils/universalImporter.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && npm run chmod-bins",
"chmod-bins": "node -e \"['dist/cli.js','dist/server.js','dist/utils/universalImporter.js'].forEach(f => { try { require('fs').chmodSync(f, 0o755); } catch (e) { console.warn('chmod skipped', f, e.message); } })\"",
"prepublishOnly": "npm run build",
"lint:dashboard": "node scripts/lint-dashboard-es5.cjs",
"start": "node dist/server.js",
"test": "vitest run",
"test:watch": "vitest",
"test:load": "vitest run tests/load/",
"test:ci": "vitest run --reporter=junit --outputFile=test-results.xml",
"test:mcp": "node ./test_cross_mcp.js",
"import": "node dist/utils/universalImporter.js"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"ai-agent",
"session-memory",
"agent-memory",
"mind-palace",
"local-first",
"sqlite",
"time-travel",
"visual-memory",
"multi-agent-sync",
"telepathy",
"morning-briefing",
"reality-drift",
"code-mode-templates",
"semantic-search",
"vector-search",
"pgvector",
"f32-blob",
"concurrency-control",
"mcp-prompts",
"mcp-resources",
"google-gemini",
"brave-search",
"llm",
"claude-desktop",
"supabase",
"progressive-context-loading",
"knowledge-accumulation",
"ai-memory",
"ai-tools",
"typescript",
"rag",
"embeddings",
"cursor",
"windsurf",
"cline",
"persistent-memory",
"zero-config",
"auto-capture",
"dashboard",
"actr",
"cognitive-memory",
"cognitive-architecture",
"activation-memory",
"spreading-activation",
"hebbian-learning",
"multi-hop-reasoning",
"rejection-gate",
"episodic-semantic",
"dark-factory",
"autonomous-pipeline",
"fail-closed",
"anti-sycophancy",
"local-embeddings",
"transformers-js",
"nomic-embed",
"business",
"enterprise",
"hipaa"
],
"homepage": "https://github.com/dcostenco/prism-coder",
"repository": {
"type": "git",
"url": "git+https://github.com/dcostenco/prism-coder.git"
},
"author": "Dmitri Costenco",
"license": "AGPL-3.0",
"devDependencies": {
"@huggingface/transformers": "3.1.0",
"@types/bun": "latest",
"@types/jsdom": "^28.0.1",
"@types/mozilla-readability": "^0.2.1",
"@types/turndown": "^5.0.6",
"dotenv": "^17.4.2",
"tsx": "^4.19.3",
"vitest": "^4.1.1"
},
"peerDependencies": {
"@huggingface/transformers": "~3.1.0",
"typescript": "^5.0.0"
},
"peerDependenciesMeta": {
"@huggingface/transformers": {
"optional": true
}
},
"overrides": {
"hono": "^4.12.18",
"fast-uri": "^3.1.2",
"ip-address": "^10.2.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.92.0",
"@google/generative-ai": "^0.24.1",
"@libsql/client": "^0.17.2",
"@modelcontextprotocol/sdk": "^1.27.1",
"@mozilla/readability": "^0.6.0",
"@opentelemetry/api": "^1.9.1",
"@opentelemetry/exporter-trace-otlp-http": "^0.214.0",
"@opentelemetry/resources": "^2.6.1",
"@opentelemetry/sdk-trace-node": "^2.6.1",
"@opentelemetry/semantic-conventions": "^1.40.0",
"@supabase/supabase-js": "^2.99.3",
"cheerio": "^1.2.0",
"commander": "^14.0.3",
"fflate": "^0.8.2",
"jose": "^6.2.2",
"jsdom": "^29.0.1",
"openai": "^6.32.0",
"p-limit": "^7.3.0",
"postcss": "8.5.12",
"quickjs-emscripten": "^0.32.0",
"stream-json": "^2.0.0",
"turndown": "^7.2.2",
"zod": "^4.3.6"
}
}