{ "name": "@ruvector/postgres-cli", "version": "0.1.0", "description": "Command-line interface for RuVector PostgreSQL extension - advanced AI vector database", "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", "postgres", "postgresql", "vector", "database", "cli", "command-line", "gnn", "attention", "embeddings", "graph", "cypher", "sparse-vectors", "bm25", "hyperbolic", "poincare", "lorentz", "quantization", "agent-routing", "machine-learning", "self-learning" ], "author": "ruv.io Team (https://ruv.io)", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/ruvnet/ruvector.git", "directory": "npm/packages/postgres-cli" }, "files": [ "dist", "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" } }