specmem-hardwicksoftware 3.5.25 → 3.5.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of specmem-hardwicksoftware might be problematic. Click here for more details.

package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "specmem-hardwicksoftware",
3
- "version": "3.5.25",
3
+ "version": "3.5.26",
4
4
  "type": "module",
5
5
  "description": "SpecMem - Speculative Memory for Claude Code. Auto-configures hooks, docker, embeddings. https://justcalljon.pro",
6
6
  "main": "dist/index.js",
@@ -167,10 +167,11 @@ function installPythonDeps() {
167
167
 
168
168
  const deps = [
169
169
  'torch --index-url https://download.pytorch.org/whl/cpu',
170
- 'sentence-transformers',
170
+ 'sentence-transformers[onnx]',
171
171
  'onnx',
172
172
  'onnxruntime',
173
- 'optimum[onnxruntime]'
173
+ 'optimum[onnxruntime]',
174
+ 'optimum'
174
175
  ];
175
176
 
176
177
  for (const dep of deps) {