-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 818 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 818 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
29
30
31
{
"name": "telegram-bsv-tipbot",
"version": "1.0.0",
"description": "A Telegram bot for tipping users with Bitcoin SV",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts",
"test": "jest"
},
"keywords": ["telegram", "bot", "bsv", "bitcoin", "tipbot"],
"author": "",
"license": "MIT",
"dependencies": {
"telegraf": "^4.15.0",
"bsv": "^2.0.0",
"dotenv": "^16.3.1",
"better-sqlite3": "^9.2.2"
},
"devDependencies": {
"@types/node": "^20.10.6",
"@types/better-sqlite3": "^7.6.8",
"typescript": "^5.3.3",
"ts-node": "^10.9.2",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0"
}
}