buster/packages/ai/package.json

61 lines
2.0 KiB
JSON

{
"name": "@buster/ai",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./*": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
},
"scripts": {
"prebuild": "node scripts/validate-env.js",
"build": "tsc",
"typecheck": "tsc --noEmit",
"dev": "tsc --watch",
"dev:mastra": "mastra dev --dir src",
"lint": "biome check --write",
"test": "vitest run",
"test:unit": "vitest run --exclude '**/*.int.test.ts' --exclude '**/*.integration.test.ts' --passWithNoTests",
"test:integration": "vitest run **/*.int.test.ts **/*.integration.test.ts",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"eval:metrics": "npx braintrust eval evals/agents/analyst-agent/metrics",
"eval:post-processing": "npx braintrust eval evals/agents/post-processing-agent",
"braintrust:push": "npx braintrust push evals/agents/analyst-agent/metrics/test_scorers.ts",
"braintrust:push:staged": "npx braintrust push evals/agents/analyst-agent/metrics/staged_scorers.ts"
},
"dependencies": {
"@ai-sdk/anthropic": "^1.2.12",
"@ai-sdk/provider": "^1.1.3",
"@buster/access-controls": "workspace:*",
"@buster/data-source": "workspace:*",
"@buster/database": "workspace:*",
"@buster/env-utils": "workspace:*",
"@buster/sandbox": "workspace:*",
"@buster/server-shared": "workspace:*",
"@buster/stored-values": "workspace:*",
"@buster/test-utils": "workspace:*",
"@buster/typescript-config": "workspace:*",
"@buster/vitest-config": "workspace:*",
"@mastra/core": "catalog:",
"@mastra/loggers": "^0.10.3",
"ai": "catalog:",
"autoevals": "^0.0.130",
"braintrust": "catalog:",
"drizzle-orm": "catalog:",
"@daytonaio/sdk": "catalog:",
"glob": "^11.0.3",
"minimatch": "^10.0.3",
"node-sql-parser": "^5.3.10",
"uuid": "^11.1.0",
"yaml": "^2.8.0",
"zod": "catalog:"
}
}