2025-07-02 11:32:06 -07:00
|
|
|
{
|
|
|
|
|
"name": "@soulcraft/brainy-cli",
|
2025-07-25 13:53:19 -07:00
|
|
|
"version": "0.19.0",
|
2025-07-02 11:32:06 -07:00
|
|
|
"description": "Command-line interface for the Brainy vector graph database",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"bin": {
|
|
|
|
|
"brainy": "cli-wrapper.js"
|
|
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"cli-wrapper.js",
|
2025-07-02 11:55:44 -07:00
|
|
|
"README.md",
|
|
|
|
|
"dist/cli.js",
|
|
|
|
|
"dist/cli.js.map"
|
2025-07-02 11:32:06 -07:00
|
|
|
],
|
|
|
|
|
"scripts": {
|
2025-07-02 11:55:44 -07:00
|
|
|
"build": "rollup -c rollup.config.js",
|
|
|
|
|
"prepare": "npm run build",
|
2025-07-22 10:53:52 -07:00
|
|
|
"postinstall": "node cli-wrapper.js --version",
|
2025-08-01 16:22:18 -07:00
|
|
|
"_version": "echo 'Version updated in package.json'",
|
|
|
|
|
"_version:patch": "npm version patch",
|
|
|
|
|
"_version:minor": "npm version minor",
|
|
|
|
|
"_version:major": "npm version major",
|
|
|
|
|
"_deploy": "npm run build && npm publish",
|
|
|
|
|
"_dry-run": "npm pack --dry-run"
|
2025-07-02 11:32:06 -07:00
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"vector-database",
|
|
|
|
|
"hnsw",
|
|
|
|
|
"cli",
|
2025-07-02 16:52:44 -07:00
|
|
|
"browser",
|
|
|
|
|
"container",
|
2025-07-02 11:32:06 -07:00
|
|
|
"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",
|
2025-07-02 16:27:53 -07:00
|
|
|
"url": "git+https://github.com/soulcraft-research/brainy.git"
|
2025-07-02 11:32:06 -07:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2025-07-25 13:53:19 -07:00
|
|
|
"@soulcraft/brainy": "^0.24.0",
|
2025-07-02 11:55:44 -07:00
|
|
|
"commander": "^14.0.0",
|
|
|
|
|
"omelette": "^0.4.17"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@rollup/plugin-commonjs": "^25.0.7",
|
|
|
|
|
"@rollup/plugin-json": "^6.1.0",
|
|
|
|
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
|
|
|
"@rollup/plugin-typescript": "^11.1.6",
|
2025-07-04 12:19:48 -07:00
|
|
|
"@types/node": "^20.11.30",
|
2025-07-02 11:55:44 -07:00
|
|
|
"@types/omelette": "^0.4.5",
|
2025-07-04 12:19:48 -07:00
|
|
|
"rollup": "^4.13.0",
|
2025-07-02 11:55:44 -07:00
|
|
|
"rollup-plugin-terser": "^7.0.2",
|
2025-07-04 12:19:48 -07:00
|
|
|
"typescript": "^5.4.5"
|
2025-07-02 11:32:06 -07:00
|
|
|
},
|
|
|
|
|
"engines": {
|
2025-07-11 11:11:56 -07:00
|
|
|
"node": ">=24.4.0"
|
2025-07-02 11:32:06 -07:00
|
|
|
}
|
2025-07-22 10:43:19 -07:00
|
|
|
}
|