* chore: vectordb driver plugin # Conflicts: # plugins/monitoring-plugin/package.json * chore: add langchain & index documents * feat: chat with documents plugin * chore: correct build step --------- Co-authored-by: namvuong <22463238+vuonghoainam@users.noreply.github.com>
44 lines
993 B
JSON
44 lines
993 B
JSON
{
|
|
"name": "retrieval-plugin",
|
|
"version": "1.0.0",
|
|
"description": "Retrieval plugin for Jan app",
|
|
"icon": "https://raw.githubusercontent.com/tailwindlabs/heroicons/88e98b0c2b458553fbadccddc2d2f878edc0387b/src/20/solid/circle-stack.svg",
|
|
"main": "dist/index.js",
|
|
"module": "dist/module.js",
|
|
"author": "Jan <service@jan.ai>",
|
|
"license": "MIT",
|
|
"activationPoints": [
|
|
"init"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc -b . && webpack --config webpack.config.js",
|
|
"bundle": "npm pack"
|
|
},
|
|
"devDependencies": {
|
|
"webpack": "^5.88.2",
|
|
"webpack-cli": "^5.1.4"
|
|
},
|
|
"dependencies": {
|
|
"@janhq/core": "^0.1.1",
|
|
"faiss-node": "^0.5.1",
|
|
"install": "^0.13.0",
|
|
"langchain": "^0.0.169",
|
|
"npm": "^10.2.0",
|
|
"pdf-parse": "^1.1.1",
|
|
"ts-loader": "^9.5.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"files": [
|
|
"dist/*",
|
|
"package.json",
|
|
"README.md"
|
|
],
|
|
"bundleDependencies": [
|
|
"pdf-parse",
|
|
"langchain",
|
|
"faiss-node"
|
|
]
|
|
}
|