-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.44 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "agents",
"version": "0.0.0",
"private": true,
"license": "SEE LICENSE IN LICENSE",
"module": "src/index.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/fazer-ai/agents.git"
},
"scripts": {
"dev": "bun --hot src/index.ts",
"start": "NODE_ENV=production bun src/index.ts",
"build": "bun run build.ts",
"test": "bun test",
"test:coverage": "bun test --coverage",
"test-watch": "bun test --watch",
"lint": "bun biome check --error-on-warnings",
"format": "bun biome check --write",
"build-check": "bunx tsc --noEmit",
"build-check:worker": "bunx tsc --noEmit -p workers/cdn/tsconfig.json",
"setup": "bun ./scripts/setup.ts",
"set-admin": "bun scripts/set-admin.ts",
"db:bootstrap": "bun scripts/db-bootstrap.ts",
"db:test:setup": "bun scripts/test-db-setup.ts",
"db:reset": "prisma migrate reset && bun run db:bootstrap",
"prisma:migrate": "prisma migrate dev",
"prisma:generate": "prisma generate",
"i18n:extract": "bun scripts/i18n-extract.ts",
"openapi:generate": "bun scripts/build-openapi.ts --write",
"openapi:check": "bun scripts/build-openapi.ts",
"check": "bun run lint && bun run build-check && bun run build-check:worker && bun run openapi:check && bun run i18n:extract && bun run test",
"prepare": "husky"
},
"dependencies": {
"@elysiajs/cookie": "^0.8.0",
"@elysiajs/cors": "^1.4.2",
"@elysiajs/eden": "^1.4.9",
"@elysiajs/jwt": "^1.4.2",
"@elysiajs/openapi": "^1.4.15",
"@elysiajs/static": "^1.4.10",
"@langchain/anthropic": "1.5.2",
"@langchain/core": "1.2.4",
"@langchain/deepseek": "1.1.5",
"@langchain/google-genai": "2.2.0",
"@langchain/langgraph": "1.4.8",
"@langchain/langgraph-checkpoint-postgres": "1.0.4",
"@langchain/mcp-adapters": "1.1.3",
"@langchain/openai": "1.5.5",
"@langchain/textsplitters": "1.0.1",
"@modelcontextprotocol/sdk": "^1",
"@prisma/adapter-pg": "^7.9.1",
"@prisma/client": "^7.9.1",
"@radix-ui/react-dialog": "^1.1.23",
"@radix-ui/react-dropdown-menu": "^2.1.24",
"@radix-ui/react-toast": "^1.2.23",
"@radix-ui/react-tooltip": "^1.2.16",
"@react-pdf/renderer": "^4",
"bun-plugin-tailwind": "^0.1.2",
"elysia": "^1.4.29",
"elysia-helmet": "^3.1.0",
"elysia-rate-limit": "^4.6.2",
"i18next": "^26.3.6",
"jose": "^6.2.7",
"langfuse-langchain": "3.38.20",
"lucide-react": "^1.28.0",
"mammoth": "^1.12.0",
"mermaid": "^11.16.0",
"pg": "8.22.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"pino-roll": "^4.0.0",
"prisma": "^7.9.1",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-i18next": "^17.0.11",
"react-image-crop": "^11.1.2",
"react-markdown": "^10.1.0",
"react-router": "^8.3.0",
"recharts": "^3.10.1",
"remark-gfm": "^4.0.1",
"tailwindcss": "^4.3.3",
"tw-animate-css": "^1.4.0",
"unpdf": "^1.8.0",
"zod": "4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.5.6",
"@happy-dom/global-registrator": "^20.11.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "7",
"@testing-library/react": "^16.3.2",
"@types/bun": "^1.3.14",
"@types/pg": "8.20.3",
"@types/react": "^19.2.18",
"@types/react-dom": "^19",
"husky": "^9.1.7",
"i18next-parser": "^9.4.0",
"pino-caller": "^4.0.0",
"typescript": "^7"
},
"overrides": {
"zod": "^4.4.3"
}
}