@soulcraft/brainy 0.27.0 → 0.29.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soulcraft/brainy",
3
- "version": "0.27.0",
3
+ "version": "0.29.0",
4
4
  "description": "A vector graph database using HNSW indexing with Origin Private File System storage",
5
5
  "main": "dist/unified.js",
6
6
  "module": "dist/unified.js",
@@ -54,19 +54,25 @@
54
54
  "build:browser": "BUILD_TYPE=browser rollup -c rollup.config.js",
55
55
  "start": "node dist/unified.js",
56
56
  "demo": "npm run build && npm run build:browser && npx http-server -o /demo/index.html",
57
- "version": "echo 'Version updated in package.json'",
58
- "version:patch": "npm version patch && node scripts/update-changelog.js",
59
- "version:minor": "npm version minor && node scripts/update-changelog.js",
60
- "version:major": "npm version major && node scripts/update-changelog.js",
61
- "changelog:update": "node scripts/update-changelog.js",
62
- "changelog:check": "echo 'Please ensure CHANGELOG.md [Unreleased] section has your changes before releasing'",
57
+ "release": "standard-version",
58
+ "release:patch": "standard-version --release-as patch",
59
+ "release:minor": "standard-version --release-as minor",
60
+ "release:major": "standard-version --release-as major",
61
+ "release:dry-run": "standard-version --dry-run",
62
+ "github-release": "node scripts/create-github-release.js",
63
+ "changelog:check": "echo 'Changelog is now automatically generated from commit messages'",
63
64
  "lint": "eslint --ext .ts,.js src/",
64
65
  "lint:fix": "eslint --ext .ts,.js src/ --fix",
65
66
  "format": "prettier --write \"src/**/*.{ts,js}\"",
66
67
  "check:format": "prettier --check \"src/**/*.{ts,js}\"",
67
68
  "check:style": "node scripts/check-code-style.js",
68
69
  "prepare": "npm run build",
69
- "deploy": "npm run build && npm publish && node scripts/create-github-release.js",
70
+ "deploy": "npm run build && npm publish",
71
+ "workflow": "node scripts/release-workflow.js",
72
+ "workflow:patch": "node scripts/release-workflow.js patch",
73
+ "workflow:minor": "node scripts/release-workflow.js minor",
74
+ "workflow:major": "node scripts/release-workflow.js major",
75
+ "workflow:dry-run": "npm run build && npm test && npm run release:dry-run",
70
76
  "dry-run": "npm pack --dry-run",
71
77
  "test": "vitest run",
72
78
  "test:watch": "vitest",
@@ -148,6 +154,7 @@
148
154
  "puppeteer": "^22.5.0",
149
155
  "rollup": "^4.13.0",
150
156
  "rollup-plugin-terser": "^7.0.2",
157
+ "standard-version": "^9.5.0",
151
158
  "tslib": "^2.6.2",
152
159
  "typescript": "^5.4.5",
153
160
  "vitest": "^3.2.4"