@shahmilsaari/memory-core 0.2.18 → 1.0.0

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.
Files changed (1) hide show
  1. package/package.json +4 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shahmilsaari/memory-core",
3
- "version": "0.2.18",
3
+ "version": "1.0.0",
4
4
  "description": "Universal AI memory core — generate AI context files from architecture profiles with RAG support",
5
5
  "homepage": "https://memory-core.shahmilsaari.my/",
6
6
  "type": "module",
@@ -14,6 +14,9 @@
14
14
  ],
15
15
  "scripts": {
16
16
  "build": "tsup && vite build --config dashboard/vite.config.ts",
17
+ "release:patch": "npm version patch --no-git-tag-version && npm run build && npm publish --access public",
18
+ "release:minor": "npm version minor --no-git-tag-version && npm run build && npm publish --access public",
19
+ "release:major": "npm version major --no-git-tag-version && npm run build && npm publish --access public",
17
20
  "docs:start": "npm run site:start",
18
21
  "docs:build": "node scripts/build-static-docs.mjs",
19
22
  "docs:serve": "npm run site:serve",