@hasna/mementos 0.14.48 → 0.14.49

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.
@@ -12,8 +12,10 @@ ENV NODE_ENV=production \
12
12
  PORT=8080
13
13
 
14
14
  # Production deps only (pg, @hasna/contracts, ai sdk, tesseract.js, ...).
15
+ # --ignore-scripts: the tarball ships prebuilt dist/ (no src/), so the package's
16
+ # own prepare/build lifecycle must not run here.
15
17
  COPY package.json bun.lock ./
16
- RUN bun install --production --frozen-lockfile
18
+ RUN bun install --production --frozen-lockfile --ignore-scripts
17
19
 
18
20
  # Prebuilt bundles shipped in the tarball.
19
21
  COPY dist ./dist
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hasna/mementos",
3
- "version": "0.14.48",
3
+ "version": "0.14.49",
4
4
  "description": "Universal memory system for AI agents - CLI + MCP server + library API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",