-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 876 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 876 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
{
"name": "telegram-bot-boilerplate",
"version": "1.0.0",
"description": "Telegram Bot Boilerplate",
"author": "Yuri Nezdemkovski <yuri@nezdemkovski.com> (https://nezdemkovski.com/)",
"homepage": "https://github.com/nezdemkovski/telegram-bot-boilerplate",
"license": "MIT",
"engines": {
"bun": ">=1"
},
"dependencies": {
"grammy": "^1.40.0"
},
"devDependencies": {
"bun-types": "1.3.9",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0"
},
"scripts": {
"dev": "bun --watch src/index.ts",
"build": "bun build src/index.ts --outdir dist --target bun --minify",
"start": "NODE_ENV=production bun dist/index.js",
"typecheck": "tsc --noEmit",
"lint": "eslint src",
"format": "prettier --write 'src/**/*.ts'"
}
}