2024-12-17 13:12:57 -05:00
|
|
|
{
|
|
|
|
"name": "librechat-mcp",
|
2025-05-08 13:28:40 -04:00
|
|
|
"version": "1.2.2",
|
2025-04-09 18:38:48 -04:00
|
|
|
"type": "commonjs",
|
2024-12-17 13:12:57 -05:00
|
|
|
"description": "MCP services for LibreChat",
|
|
|
|
"main": "dist/index.js",
|
|
|
|
"module": "dist/index.es.js",
|
|
|
|
"types": "./dist/types/index.d.ts",
|
|
|
|
"exports": {
|
|
|
|
".": {
|
2025-04-09 18:38:48 -04:00
|
|
|
"require": "./dist/index.js",
|
2024-12-17 13:12:57 -05:00
|
|
|
"types": "./dist/types/index.d.ts"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"clean": "rimraf dist",
|
2025-04-09 18:38:48 -04:00
|
|
|
"build": "npm run clean && rollup -c --bundleConfigAsCjs",
|
|
|
|
"build:watch": "rollup -c -w --bundleConfigAsCjs",
|
2024-12-17 13:12:57 -05:00
|
|
|
"test": "jest --coverage --watch",
|
|
|
|
"test:ci": "jest --coverage --ci",
|
|
|
|
"verify": "npm run test:ci",
|
|
|
|
"b:clean": "bun run rimraf dist",
|
|
|
|
"b:build": "bun run b:clean && bun run rollup -c --silent --bundleConfigAsCjs",
|
|
|
|
"start:everything-sse": "node -r dotenv/config --loader ./tsconfig-paths-bootstrap.mjs --experimental-specifier-resolution=node ./src/examples/everything/sse.ts",
|
|
|
|
"start:everything": "node -r dotenv/config --loader ./tsconfig-paths-bootstrap.mjs --experimental-specifier-resolution=node ./src/demo/everything.ts",
|
|
|
|
"start:filesystem": "node -r dotenv/config --loader ./tsconfig-paths-bootstrap.mjs --experimental-specifier-resolution=node ./src/demo/filesystem.ts",
|
|
|
|
"start:servers": "node -r dotenv/config --loader ./tsconfig-paths-bootstrap.mjs --experimental-specifier-resolution=node ./src/demo/servers.ts"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/danny-avila/LibreChat.git"
|
|
|
|
},
|
|
|
|
"author": "",
|
|
|
|
"license": "ISC",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/danny-avila/LibreChat/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://librechat.ai",
|
|
|
|
"devDependencies": {
|
|
|
|
"@babel/preset-env": "^7.21.5",
|
|
|
|
"@babel/preset-react": "^7.18.6",
|
|
|
|
"@babel/preset-typescript": "^7.21.0",
|
|
|
|
"@rollup/plugin-alias": "^5.1.0",
|
|
|
|
"@rollup/plugin-commonjs": "^25.0.2",
|
|
|
|
"@rollup/plugin-json": "^6.1.0",
|
|
|
|
"@rollup/plugin-node-resolve": "^15.1.0",
|
|
|
|
"@rollup/plugin-replace": "^5.0.5",
|
|
|
|
"@rollup/plugin-terser": "^0.4.4",
|
2025-03-06 12:47:59 -05:00
|
|
|
"@rollup/plugin-typescript": "^12.1.2",
|
2024-12-17 13:12:57 -05:00
|
|
|
"@types/diff": "^6.0.0",
|
|
|
|
"@types/express": "^5.0.0",
|
|
|
|
"@types/jest": "^29.5.2",
|
|
|
|
"@types/node": "^20.3.0",
|
|
|
|
"@types/react": "^18.2.18",
|
|
|
|
"@types/winston": "^2.4.4",
|
|
|
|
"jest": "^29.5.0",
|
|
|
|
"jest-junit": "^16.0.0",
|
|
|
|
"librechat-data-provider": "*",
|
|
|
|
"rimraf": "^5.0.1",
|
|
|
|
"rollup": "^4.22.4",
|
|
|
|
"rollup-plugin-generate-package-json": "^3.2.0",
|
|
|
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
|
|
"ts-node": "^10.9.2",
|
|
|
|
"typescript": "^5.0.4"
|
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"registry": "https://registry.npmjs.org/"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2025-05-13 19:14:15 +02:00
|
|
|
"@modelcontextprotocol/sdk": "^1.11.2",
|
2024-12-17 13:12:57 -05:00
|
|
|
"diff": "^7.0.0",
|
2025-02-24 20:08:55 -05:00
|
|
|
"eventsource": "^3.0.2",
|
2024-12-17 13:12:57 -05:00
|
|
|
"express": "^4.21.2"
|
2025-02-10 21:56:08 +01:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2025-04-13 23:01:55 -04:00
|
|
|
"keyv": "^5.3.2"
|
2024-12-17 13:12:57 -05:00
|
|
|
}
|
|
|
|
}
|