mongodb-rag-ingest
Version:
MongoDB Ingest CLI for the MongoDB Chatbot Framework.
64 lines (63 loc) • 1.72 kB
JSON
{
"name": "mongodb-rag-ingest",
"version": "0.4.0",
"description": "MongoDB Ingest CLI for the MongoDB Chatbot Framework.",
"author": "",
"license": "Apache-2.0",
"keywords": [
"retrieval-augmented-generation",
"rag",
"chatbot",
"mongodb",
"mongodb-chatbot-framework"
],
"repository": {
"type": "git",
"url": "https://github.com/mongodb/chatbot.git"
},
"homepage": "https://mongodb.github.io/chatbot/ingest/configure/",
"engines": {
"node": ">=18",
"npm": ">=8"
},
"files": [
"build",
"README.md"
],
"main": "./build/index.js",
"bin": {
"ingest": "./build/main.js"
},
"scripts": {
"clean": "rm -rf build",
"build": "tsc -b tsconfig.build.json",
"postbuild": "chmod +x build/main.js",
"watch": "tsc -b -w",
"test": "node --experimental-vm-modules ../../node_modules/jest/bin/jest.js --forceExit",
"lint": "eslint ./src --ext ts,tsx,js,jsx --report-unused-disable-directives",
"lint:fix": "npm run lint -- --fix && prettier ./src --check --write",
"docs": "npx typedoc --excludePrivate --exclude '**/*.test.ts' --out docs src",
"release": "release-it"
},
"devDependencies": {
"@types/node": "^12",
"@typescript-eslint/eslint-plugin": "^5",
"@typescript-eslint/parser": "^5",
"eslint": "^8",
"eslint-config-prettier": "^8",
"eslint-plugin-jsdoc": "^46.4.5",
"eslint-plugin-prettier": "^4",
"jest": "^29.5.0",
"mongodb-memory-server": "^10.1.2",
"prettier": "^2",
"release-it": "^16.1.5",
"ts-jest": "^29.1.0",
"typedoc": "^0",
"typescript": "^5"
},
"dependencies": {
"dotenv": "^16",
"mongodb-rag-core": "*",
"yargs": "^17"
}
}