-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 788 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 788 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
{
"name": "pi-telegram-bot",
"version": "1.0.0",
"description": "Telegram bot powered by pi coding agent",
"type": "module",
"scripts": {
"start": "node --import tsx/esm src/bot.ts",
"dev": "node --watch --import tsx/esm src/bot.ts",
"relay": "node --import tsx/esm relay/server.ts",
"relay:dev": "node --watch --import tsx/esm relay/server.ts",
"dashboard": "node --import tsx/esm dashboard/server.ts",
"dashboard:dev": "node --watch --import tsx/esm dashboard/server.ts"
},
"dependencies": {
"@mariozechner/pi-coding-agent": "^0.55.0",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.6",
"better-sqlite3": "^12.6.2",
"dotenv": "^16.0.0",
"express": "^5.2.1",
"telegraf": "^4.16.3",
"tsx": "^4.0.0"
}
}