-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 737 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 737 Bytes
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
{
"name": "opencoder-telegram-remote-plugin",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "cd plugin && npm run build",
"dev": "cd plugin && npm run dev",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "cd plugin && npm run typecheck",
"testing-group-sending": "node scripts/testing-group-sending.ts",
"testing-message-listener": "node scripts/testing-message-listener.ts"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.12",
"@google/genai": "^1.37.0",
"ai": "^6.0.39",
"dotenv": "^16.4.7",
"grammy": "^1.34.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.10"
}
}