Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

ragpipe

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ragpipe - npm Package Compare versions

Comparing version
0.7.0
to
0.8.0-alpha.1
+8
-0
dist/cli.js

@@ -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"
}
}