chore(release): 0.28.0 [skip ci]

This commit is contained in:
David Snelling 2025-07-31 13:39:07 -07:00
parent 04842d866c
commit 7ea47be868
3 changed files with 12 additions and 4 deletions

View file

@ -1,6 +1,6 @@
{
"name": "@soulcraft/brainy",
"version": "0.27.1",
"version": "0.28.0",
"description": "A vector graph database using HNSW indexing with Origin Private File System storage",
"main": "dist/unified.js",
"module": "dist/unified.js",
@ -59,6 +59,7 @@
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"release:dry-run": "standard-version --dry-run",
"github-release": "node scripts/create-github-release.js",
"changelog:check": "echo 'Changelog is now automatically generated from commit messages'",
"lint": "eslint --ext .ts,.js src/",
"lint:fix": "eslint --ext .ts,.js src/ --fix",
@ -66,7 +67,12 @@
"check:format": "prettier --check \"src/**/*.{ts,js}\"",
"check:style": "node scripts/check-code-style.js",
"prepare": "npm run build",
"deploy": "npm run build && npm run release && npm publish && node scripts/create-github-release.js",
"deploy": "npm run build && npm publish",
"workflow": "node scripts/release-workflow.js",
"workflow:patch": "node scripts/release-workflow.js patch",
"workflow:minor": "node scripts/release-workflow.js minor",
"workflow:major": "node scripts/release-workflow.js major",
"workflow:dry-run": "npm run build && npm test && npm run release:dry-run",
"dry-run": "npm pack --dry-run",
"test": "vitest run",
"test:watch": "vitest",