LibreChat/turbo.json
Danny Avila 8eb9de011f
📦 chore: bump @librechat/agents to v3.1.86, npm audit, build fix (#13105)
* 📦 chore: Bump `@librechat/agents` to v3.1.86 in package-lock.json and package.json files

* 📦 chore: Update dependencies in package-lock.json to latest versions, including @protobufjs/codegen, @protobufjs/inquire, @protobufjs/utf8, and protobufjs

* 📦 chore: Add `librechat-data-provider` dependency in package.json and package-lock.json, and update build dependencies in turbo.json
2026-05-12 16:19:55 -04:00

36 lines
976 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["package-lock.json"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": [
"src/**",
"!src/**/__tests__/**",
"!src/**/__mocks__/**",
"!src/**/*.test.*",
"!src/**/*.spec.*",
"scripts/**",
"rollup.config.js",
"server-rollup.config.js",
"tsconfig.json",
"tsconfig.build.json",
"vite.config.ts",
"index.html",
"postcss.config.*",
"tailwind.config.*",
"package.json"
],
"outputs": ["dist/**"]
},
"@librechat/data-schemas#build": {
"dependsOn": ["^build", "librechat-data-provider#build"]
},
"@librechat/api#build": {
"dependsOn": ["^build", "librechat-data-provider#build", "@librechat/data-schemas#build"]
},
"@librechat/client#build": {
"dependsOn": ["^build", "librechat-data-provider#build"]
}
}
}