- Added a new `@soulcraft/brainy-cli` package to provide a dedicated CLI interface for the Brainy database. - Implemented a CLI wrapper script (`cli-wrapper.js`) to manage global package execution and version handling. - Introduced `scripts/publish-cli.js` to automate synchronized publishing of the main package and CLI, ensuring version consistency. - Created documentation for CLI usage and publishing workflow (`publishing-cli.md`). - Updated `package.json` to include CLI-related build and deploy scripts. - Adjusted `README.md` to document the CLI package, usage instructions, and build separation. This feature introduces a standalone CLI package, improves deployment automation, and enhances documentation to align with the updated architecture.
43 lines
No EOL
933 B
JSON
43 lines
No EOL
933 B
JSON
{
|
|
"name": "@soulcraft/brainy-cli",
|
|
"version": "0.9.16",
|
|
"description": "Command-line interface for the Brainy vector graph database",
|
|
"type": "module",
|
|
"bin": {
|
|
"brainy": "cli-wrapper.js"
|
|
},
|
|
"files": [
|
|
"cli-wrapper.js",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"postinstall": "node cli-wrapper.js --version"
|
|
},
|
|
"keywords": [
|
|
"vector-database",
|
|
"hnsw",
|
|
"cli",
|
|
"command-line",
|
|
"graph-database"
|
|
],
|
|
"author": "David Snelling (david@soulcraft.com)",
|
|
"license": "MIT",
|
|
"private": false,
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"homepage": "https://github.com/soulcraft-research/brainy",
|
|
"bugs": {
|
|
"url": "https://github.com/soulcraft-research/brainy/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/soulcraft-research/brainy.git"
|
|
},
|
|
"dependencies": {
|
|
"@soulcraft/brainy": "0.9.16"
|
|
},
|
|
"engines": {
|
|
"node": ">=24.0.0"
|
|
}
|
|
} |