generated from aulasoftwarelibre/workshop-telegram-bots-with-ai-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.7 KB
/
package.json
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
{
"name": "workshop-telegram-bots-with-ai",
"version": "1.0.0",
"description": "Workshop to build a bot with Telegram and Vercel SDK AI",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/main.ts",
"lint": "eslint src/",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx src/lib/db/migrate.ts",
"db:drop": "drizzle-kit drop",
"db:pull": "drizzle-kit introspect",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:check": "drizzle-kit check"
},
"keywords": [
"ai",
"telegram",
"llm"
],
"author": "Sergio Gómez Bachiller <[email protected]>",
"license": "EPL-2.0",
"dependencies": {
"@ai-sdk/openai": "^0.0.66",
"@t3-oss/env-core": "^0.11.1",
"ai": "^3.4.9",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.34.1",
"drizzle-zod": "^0.5.1",
"grammy": "^1.30.0",
"nanoid": "^5.0.7",
"ollama-ai-provider": "^0.15.1",
"postgres": "^3.4.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"drizzle-kit": "^0.25.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort": "^3.0.2",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-unused-imports": "^4.1.4",
"pg": "^8.13.0",
"prettier": "^3.3.3",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"packageManager": "[email protected]+sha512.e5a7e52a4183a02d5931057f7a0dbff9d5e9ce3161e33fa68ae392125b79282a8a8a470a51dfc8a0ed86221442eb2fb57019b0990ed24fab519bf0e1bc5ccfc4"
}