mastra-browser-rag
Version:
The Retrieval-Augmented Generation (RAG) module contains document processing and embedding utilities.
70 lines (69 loc) • 1.6 kB
JSON
{
"name": "mastra-browser-rag",
"version": "0.0.9",
"description": "",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --experimental-dts --clean --treeshake=smallest --splitting",
"buld:watch": "pnpm build --watch",
"test": "vitest run",
"lint": "eslint ."
},
"author": "",
"license": "ISC",
"dependencies": {
"@mastra/core": "npm:mastra-browser-core",
"@paralleldrive/cuid2": "^2.2.2",
"js-tiktoken": "^1.0.19",
"node-html-better-parser": "^1.4.7",
"pathe": "^2.0.3",
"zod": "^3.24.2"
},
"peerDependencies": {
"ai": "^4.0.0"
},
"devDependencies": {
"@ai-sdk/cohere": "latest",
"@ai-sdk/openai": "latest",
"@internal/lint": "workspace:*",
"@microsoft/api-extractor": "^7.52.1",
"@types/node": "^20.17.27",
"ai": "^4.1.54",
"dotenv": "^16.4.7",
"eslint": "^9.23.0",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"vitest": "^3.0.9"
},
"keywords": [
"rag",
"retrieval-augmented-generation",
"vector-search",
"vectorstore",
"embeddings",
"embedding",
"document-processing",
"semantic-search",
"text-splitting",
"chunking",
"ai",
"llm",
"llms",
"typescript"
]
}