ruvector/npm/packages/cli/package.json
Claude d313d2d3ff
feat(npm): Add Claude Code v2.0.55+ commands to npm CLI
Added 3 new hooks commands to npm CLI:
- lsp-diagnostic: Process LSP diagnostic events for learning
- suggest-ultrathink: Recommend ultrathink mode for complex tasks
- async-agent: Coordinate async sub-agent execution

Security review completed:
- No command injection vulnerabilities
- Safe file path handling with path.join
- Content length limits prevent memory issues
- Minimal dependencies (commander + optional pg)

Updated npm CLI to v0.1.27 with 29 hooks commands.
2025-12-29 01:30:57 +00:00

46 lines
944 B
JSON

{
"name": "@ruvector/cli",
"version": "0.1.27",
"description": "Command-line interface for RuVector vector database with self-learning hooks",
"main": "dist/cli.js",
"types": "dist/cli.d.ts",
"bin": {
"ruvector": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist *.tsbuildinfo",
"test": "echo \"Tests not yet implemented\"",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts"
},
"keywords": [
"vector",
"database",
"cli",
"command-line",
"hooks",
"intelligence",
"claude-code"
],
"author": "RuVector Team",
"license": "MIT",
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"commander": "^12.0.0"
},
"optionalDependencies": {
"pg": "^8.11.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/pg": "^8.11.0",
"typescript": "^5.0.0"
}
}