**chore(cli): add package-lock.json for Brainy CLI dependencies**
- Introduced `package-lock.json` for the `@soulcraft/brainy-cli` package to manage dependencies explicitly. - Ensures reproducible installs and aligns the CLI with the latest project dependencies. - Supports dependency resolution, locking versions, and maintaining consistency across development and CI/CD environments.
This commit is contained in:
parent
563ccf602f
commit
6780a7551a
5 changed files with 3446 additions and 4 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -51,3 +51,4 @@ Thumbs.db
|
|||
/encoded-image.html
|
||||
/encoded-image.txt
|
||||
/cli-package/dist/
|
||||
/cli-package/node_modules/
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
[](https://nodejs.org/)
|
||||
[](https://www.typescriptlang.org/)
|
||||
[](CONTRIBUTING.md)
|
||||
[](https://www.npmjs.com/package/@soulcraft/brainy)
|
||||
[](https://www.npmjs.com/package/@soulcraft/brainy)
|
||||
|
||||
[//]: # ([](https://github.com/sodal-project/cartographer))
|
||||
|
||||
|
|
|
|||
3441
cli-package/package-lock.json
generated
Normal file
3441
cli-package/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@soulcraft/brainy-cli",
|
||||
"version": "0.9.18",
|
||||
"version": "0.9.19",
|
||||
"description": "Command-line interface for the Brainy vector graph database",
|
||||
"type": "module",
|
||||
"bin": {
|
||||
|
|
@ -39,7 +39,7 @@
|
|||
"url": "https://github.com/soulcraft-research/brainy.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@soulcraft/brainy": "0.9.18",
|
||||
"@soulcraft/brainy": "0.9.19",
|
||||
"commander": "^14.0.0",
|
||||
"omelette": "^0.4.17"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -3,4 +3,4 @@
|
|||
* Do not modify this file directly.
|
||||
*/
|
||||
|
||||
export const VERSION = '0.9.18';
|
||||
export const VERSION = '0.9.19';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue