Merge branch 'main' into feat/user-groups

This commit is contained in:
Ruben Talstra 2025-03-10 15:11:30 +01:00 committed by GitHub
commit 2fd04b6d65
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
232 changed files with 14368 additions and 5262 deletions

View file

@ -1,6 +1,6 @@
{
"name": "LibreChat",
"version": "v0.7.7-rc1",
"version": "v0.7.7",
"description": "",
"workspaces": [
"api",
@ -23,8 +23,8 @@
"update:sudo": "node config/update.js --sudo",
"update:deployed": "node config/deployed-update.js",
"rebase:deployed": "node config/deployed-update.js --rebase",
"start:deployed": "docker-compose -f ./deploy-compose.yml up -d",
"stop:deployed": "docker-compose -f ./deploy-compose.yml down",
"start:deployed": "docker compose -f ./deploy-compose.yml up -d || docker-compose -f ./deploy-compose.yml up -d",
"stop:deployed": "docker compose -f ./deploy-compose.yml down || docker-compose -f ./deploy-compose.yml down",
"upgrade": "node config/upgrade.js",
"create-user": "node config/create-user.js",
"invite-user": "node config/invite-user.js",
@ -41,7 +41,8 @@
"backend:stop": "node config/stop-backend.js",
"build:data-provider": "cd packages/data-provider && npm run build",
"build:mcp": "cd packages/mcp && npm run build",
"frontend": "npm run build:data-provider && npm run build:mcp && cd client && npm run build",
"build:data-schemas": "cd packages/data-schemas && npm run build",
"frontend": "npm run build:data-provider && npm run build:mcp && npm run build:data-schemas && cd client && npm run build",
"frontend:ci": "npm run build:data-provider && cd client && npm run build:ci",
"frontend:dev": "cd client && npm run dev",
"e2e": "playwright test --config=e2e/playwright.config.local.ts",
@ -63,7 +64,9 @@
"b:api-inspect": "NODE_ENV=production bun --inspect run api/server/index.js",
"b:api:dev": "NODE_ENV=production bun run --watch api/server/index.js",
"b:data": "cd packages/data-provider && bun run b:build",
"b:client": "bun --bun run b:data && cd client && bun --bun run b:build",
"b:mcp": "cd packages/mcp && bun run b:build",
"b:data-schemas": "cd packages/data-schemas && bun run b:build",
"b:client": "bun --bun run b:data && bun --bun run b:mcp && bun --bun run b:data-schemas && cd client && bun --bun run b:build",
"b:client:dev": "cd client && bun run b:dev",
"b:test:client": "cd client && bun run b:test",
"b:test:api": "cd api && bun run b:test",
@ -113,6 +116,7 @@
"elliptic": "^6.6.1"
},
"overrides": {
"axios": "1.8.2",
"elliptic": "^6.6.1",
"mdast-util-gfm-autolink-literal": "2.0.0",
"remark-gfm": {