ruvector/npm/packages/postgres-cli/package.json
rUv ff4009897d feat(postgres-cli): Add full native installation support
The CLI now supports complete native installation without Docker:
- Auto-detects and installs PostgreSQL (apt, yum, dnf, pacman, brew)
- Installs Rust via rustup if not present
- Installs cargo-pgrx and initializes for target PG version
- Builds ruvector-postgres 0.2.5 from crates.io
- Configures PostgreSQL with user, database, and extension

New install options:
  --method native       Force native installation
  --pg-version <ver>    PostgreSQL version (14, 15, 16, 17)
  --skip-postgres       Use existing PostgreSQL
  --skip-rust           Use existing Rust

Usage:
  npx @ruvector/postgres-cli install --method native
  npx @ruvector/postgres-cli install --method native --pg-version 17

Published as @ruvector/postgres-cli@0.2.4

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-06 17:56:21 +00:00

112 lines
2.5 KiB
JSON

{
"name": "@ruvector/postgres-cli",
"version": "0.2.4",
"description": "Advanced AI vector database CLI for PostgreSQL - pgvector drop-in replacement with 53+ SQL functions, 39 attention mechanisms, GNN layers, hyperbolic embeddings, and self-learning capabilities",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"ruvector-pg": "dist/cli.js",
"rvpg": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist *.tsbuildinfo",
"test": "node --test tests/*.test.js",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"ruvector",
"vector-database",
"postgres",
"postgresql",
"vector",
"embeddings",
"semantic-search",
"similarity-search",
"pgvector",
"hnsw",
"ivfflat",
"ann",
"approximate-nearest-neighbor",
"machine-learning",
"ai",
"artificial-intelligence",
"deep-learning",
"neural-network",
"gnn",
"graph-neural-network",
"gcn",
"graphsage",
"gat",
"attention",
"transformer",
"multi-head-attention",
"flash-attention",
"hyperbolic",
"poincare",
"lorentz",
"hierarchical-embeddings",
"knowledge-graph",
"graph-database",
"cypher",
"sparse-vectors",
"bm25",
"tf-idf",
"splade",
"hybrid-search",
"agent-routing",
"llm",
"rag",
"retrieval-augmented-generation",
"self-learning",
"reasoning",
"quantization",
"vector-quantization",
"cli",
"command-line"
],
"author": "ruv.io Team <info@ruv.io> (https://ruv.io)",
"license": "MIT",
"homepage": "https://github.com/ruvnet/ruvector#readme",
"bugs": {
"url": "https://github.com/ruvnet/ruvector/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ruvnet/ruvector.git",
"directory": "npm/packages/postgres-cli"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/ruvnet"
},
"files": [
"dist",
"benchmarks",
"README.md"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"commander": "^11.1.0",
"chalk": "^5.3.0",
"pg": "^8.11.3",
"inquirer": "^9.2.12",
"ora": "^8.0.1",
"cli-table3": "^0.6.3"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/pg": "^8.10.9",
"@types/inquirer": "^9.0.7",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}