+8
-0
@@ -328,2 +328,8 @@ #!/usr/bin/env node | ||
| importName: "supabaseVectorStore" | ||
| }, | ||
| { | ||
| label: "PostgreSQL (pgvector direct)", | ||
| value: "pgvector", | ||
| package: "@ragpipe/plugin-pgvector", | ||
| importName: "pgVectorStore" | ||
| } | ||
@@ -390,2 +396,4 @@ ]; | ||
| ); | ||
| } else if (p.value === "pgvector") { | ||
| lines.push("connectionString: process.env.DATABASE_URL!,"); | ||
| } else if (p.value === "gemini") { | ||
@@ -392,0 +400,0 @@ lines.push("apiKey: process.env.GEMINI_API_KEY!,"); |
+65
-68
| { | ||
| "name": "ragpipe", | ||
| "version": "0.7.0", | ||
| "description": "Pluggable TypeScript RAG toolkit — defineConfig() one file, embed → search → generate.", | ||
| "type": "module", | ||
| "license": "MIT", | ||
| "author": { | ||
| "name": "yungblud", | ||
| "url": "https://github.com/yungblud" | ||
| }, | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "https://github.com/yungblud/ragpipe", | ||
| "directory": "packages/ragpipe" | ||
| }, | ||
| "bugs": { | ||
| "url": "https://github.com/yungblud/ragpipe/issues" | ||
| }, | ||
| "homepage": "https://github.com/yungblud/ragpipe#readme", | ||
| "publishConfig": { | ||
| "registry": "https://registry.npmjs.org/", | ||
| "access": "public" | ||
| }, | ||
| "exports": { | ||
| ".": { | ||
| "types": "./dist/index.d.ts", | ||
| "import": "./dist/index.js", | ||
| "require": "./dist/index.cjs" | ||
| } | ||
| }, | ||
| "bin": { | ||
| "ragpipe": "./dist/cli.js" | ||
| }, | ||
| "main": "./dist/index.cjs", | ||
| "module": "./dist/index.js", | ||
| "types": "./dist/index.d.ts", | ||
| "files": [ | ||
| "dist", | ||
| "README.md" | ||
| ], | ||
| "keywords": [ | ||
| "rag", | ||
| "retrieval-augmented-generation", | ||
| "embeddings", | ||
| "vector-search", | ||
| "llm", | ||
| "ai", | ||
| "typescript", | ||
| "plugin" | ||
| ], | ||
| "devDependencies": { | ||
| "tsup": "^8.4.0", | ||
| "typescript": "^5.8.3", | ||
| "vitest": "^3.1.1" | ||
| }, | ||
| "dependencies": { | ||
| "c12": "^2.0.4", | ||
| "citty": "^0.1.6", | ||
| "consola": "^3.4.0" | ||
| }, | ||
| "scripts": { | ||
| "build": "tsup", | ||
| "dev": "tsup --watch", | ||
| "typecheck": "tsc --noEmit", | ||
| "test": "vitest run", | ||
| "test:watch": "vitest", | ||
| "test:coverage": "vitest run --coverage" | ||
| } | ||
| } | ||
| "name": "ragpipe", | ||
| "version": "0.8.0-alpha.1", | ||
| "description": "Pluggable TypeScript RAG toolkit — defineConfig() one file, embed → search → generate.", | ||
| "type": "module", | ||
| "license": "MIT", | ||
| "author": { | ||
| "name": "yungblud", | ||
| "url": "https://github.com/yungblud" | ||
| }, | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "https://github.com/yungblud/ragpipe", | ||
| "directory": "packages/ragpipe" | ||
| }, | ||
| "bugs": { | ||
| "url": "https://github.com/yungblud/ragpipe/issues" | ||
| }, | ||
| "homepage": "https://github.com/yungblud/ragpipe#readme", | ||
| "publishConfig": { | ||
| "registry": "https://registry.npmjs.org/", | ||
| "access": "public" | ||
| }, | ||
| "exports": { | ||
| ".": { | ||
| "types": "./dist/index.d.ts", | ||
| "import": "./dist/index.js", | ||
| "require": "./dist/index.cjs" | ||
| } | ||
| }, | ||
| "bin": { | ||
| "ragpipe": "./dist/cli.js" | ||
| }, | ||
| "main": "./dist/index.cjs", | ||
| "module": "./dist/index.js", | ||
| "types": "./dist/index.d.ts", | ||
| "files": ["dist", "README.md"], | ||
| "scripts": { | ||
| "build": "tsup", | ||
| "dev": "tsup --watch", | ||
| "typecheck": "tsc --noEmit", | ||
| "test": "vitest run", | ||
| "test:watch": "vitest", | ||
| "test:coverage": "vitest run --coverage" | ||
| }, | ||
| "keywords": [ | ||
| "rag", | ||
| "retrieval-augmented-generation", | ||
| "embeddings", | ||
| "vector-search", | ||
| "llm", | ||
| "ai", | ||
| "typescript", | ||
| "plugin" | ||
| ], | ||
| "devDependencies": { | ||
| "tsup": "^8.4.0", | ||
| "typescript": "^5.8.3", | ||
| "vitest": "^3.1.1" | ||
| }, | ||
| "dependencies": { | ||
| "c12": "^2.0.4", | ||
| "citty": "^0.1.6", | ||
| "consola": "^3.4.0" | ||
| } | ||
| } |
38615
0.39%997
0.81%