@masuidrive/bloom-local-rag
Version:
RAG (Retrieval-Augmented Generation) system for local directories - Index and search your documents with AI-powered answers
78 lines (77 loc) • 1.93 kB
JSON
{
"name": "@masuidrive/bloom-local-rag",
"version": "0.3.3",
"description": "RAG (Retrieval-Augmented Generation) system for local directories - Index and search your documents with AI-powered answers",
"main": "dist/index.js",
"bin": {
"bloom-local-rag": "./dist/cli-wrapper.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"prepublishOnly": "npm run build",
"bloom": "node dist/cli.js",
"bloom:quiet": "node dist/cli.js 2> >(grep -v -E \"\\[TRACE|\\[DEBUG|No existing dataset\" >&2)"
},
"keywords": [
"rag",
"search",
"cli",
"vector",
"langchain"
],
"author": "masuidrive",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/masuidrive/bloom-local-rag"
},
"homepage": "https://github.com/masuidrive/bloom-local-rag#readme",
"bugs": {
"url": "https://github.com/masuidrive/bloom-local-rag/issues"
},
"files": [
"dist/",
"README.md",
"README.ja.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0"
},
"type": "module",
"dependencies": {
"@lancedb/lancedb": "^0.12.0",
"@langchain/community": "^0.3.46",
"@langchain/core": "^0.3.59",
"@langchain/google-genai": "^0.2.13",
"@langchain/openai": "^0.5.13",
"@langchain/textsplitters": "^0.1.0",
"apache-arrow": "^17.0.0",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"cosmiconfig": "^9.0.0",
"dotenv": "^16.5.0",
"glob": "^11.0.3",
"gray-matter": "^4.0.3",
"ignore": "^5.3.2",
"js-yaml": "^4.1.0",
"langchain": "^0.3.28",
"p-limit": "^6.2.0",
"xxhash-wasm": "^1.1.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.0.3",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"overrides": {
"tr46": "^5.0.0",
"whatwg-url": "^14.0.0"
}
}