-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.11 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
{
"name": "tools-agents",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "",
"db:studio": "prisma studio",
"db:push": "prisma db push",
"db:generate": "prisma generate",
"dev": "tsx watch src/index.ts",
"format": "npx prettier . --ignore-path .gitignore --write --tab-width 4",
"lint": "npx eslint . --ext .ts",
"start": "npx ts-node --transpile-only ./src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:e2e": "playwright test"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@fastify/cors": "^11.0.0",
"@fastify/env": "^5.0.1",
"@fastify/sensible": "^6.0.1",
"@langchain/community": "^0.3.27",
"@langchain/core": "^0.3.36",
"@langchain/google-genai": "^0.1.9",
"@langchain/groq": "^0.1.3",
"@langchain/langgraph": "^0.2.41",
"@langchain/langgraph-checkpoint": "^0.0.16",
"@langchain/langgraph-checkpoint-postgres": "^0.0.4",
"@langchain/mcp-adapters": "^0.3.4",
"@langchain/ollama": "^0.2.0",
"@langchain/textsplitters": "^0.1.0",
"@prisma/adapter-neon": "^6.5.0",
"@prisma/client": "^6.3.0",
"@t3-oss/env-core": "^0.12.0",
"@types/mime-types": "^2.1.4",
"bottleneck": "^2.19.5",
"dotenv": "^16.4.7",
"electron-log": "^5.2.4",
"fastify": "^5.0.0",
"fastify-plugin": "^5.0.1",
"mime-types": "^2.1.35",
"pg": "^8.14.1",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"superjson": "^2.2.2",
"telegraf": "^4.16.3",
"telegram": "^2.26.16",
"uuid": "^11.1.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@playwright/test": "^1.50.0",
"@types/cors": "^2.8.17",
"@types/node": "^22.7.3",
"@types/pg": "^8.11.11",
"@types/supertest": "^6.0.3",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^3.1.1",
"eslint": "^9.11.1",
"prettier": "^3.3.3",
"prisma": "^6.3.0",
"supertest": "^7.1.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"vitest": "^3.1.1"
}
}