forked from BankkRoll/Gamba-telegram
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 912 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 912 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
27
28
{
"name": "telegram-bot-blockchain-listener",
"version": "1.0.0",
"description": "A simple Telegram bot that listens for blockchain events and sends notifications.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts"
},
"dependencies": {
"@solana/wallet-adapter-react": "^0.15.35",
"@solana/wallet-adapter-wallets": "^0.19.26",
"@solana/web3.js": "^1.90.0",
"gamba-core-v2": "^0.1.7",
"gamba-react-ui-v2": "^0.2.0",
"node-telegram-bot-api": "^0.64.0"
},
"author": "Bankkroll",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.20",
"@types/node-telegram-bot-api": "^0.64.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}