memdex 0.1.3 → 0.1.4

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "memdex",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Agent-facing semantic retrieval for local projects and source sets using NotebookLM, repomix snapshots, freshness checks, and local verification.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -27,20 +27,26 @@
27
27
  },
28
28
  "files": [
29
29
  "bin/memdex.js",
30
+ "dist",
30
31
  "LICENSE",
31
- "scripts/memdex.py",
32
32
  "README.md"
33
33
  ],
34
34
  "scripts": {
35
- "memdex": "bun ./bin/memdex.js",
36
- "check": "python3 -m py_compile scripts/memdex.py && python3 tests/test_memdex_cli.py",
37
- "test": "python3 tests/test_memdex_cli.py"
35
+ "build": "rm -rf dist && bun build src/cli.ts --target=node --format=esm --packages=external --outdir=dist",
36
+ "memdex": "bun ./src/cli.ts",
37
+ "check": "bun test && bun run build && node ./bin/memdex.js --help >/dev/null",
38
+ "test": "bun test",
39
+ "prepack": "bun run build"
40
+ },
41
+ "dependencies": {
42
+ "commander": "^14.0.3",
43
+ "yaml": "^2.9.0"
38
44
  },
39
45
  "publishConfig": {
40
46
  "access": "public",
41
47
  "provenance": true
42
48
  },
43
49
  "engines": {
44
- "node": ">=18"
50
+ "node": ">=20"
45
51
  }
46
52
  }