+1
-1
@@ -413,3 +413,3 @@ #!/usr/bin/env node | ||
| ollama: "llama3", | ||
| bedrock: "anthropic.claude-3-5-haiku-20241022-v1:0" | ||
| bedrock: "anthropic.claude-3-haiku-20240307-v1:0" | ||
| } | ||
@@ -416,0 +416,0 @@ }; |
+68
-65
| { | ||
| "name": "ragpipe", | ||
| "version": "0.7.0-alpha.3", | ||
| "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" | ||
| } | ||
| } | ||
| "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" | ||
| } | ||
| } |
38464
0.27%