-
-
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) · 781 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 781 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": "plus-kanal-bot",
"version": "1.0.0",
"description": "Telegram Bot for automationg subscriptions for private channels",
"main": "src/index.ts",
"scripts": {
"start": "node ./dist/bot.js",
"build": "yarn clean & tsc",
"watch": "tsc -w",
"dev": "nodemon ./dist/bot.js",
"clean": "rm -rf ./dist",
"debug": "export DEBUG='grammy*' && yarn dev",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Telegram",
"Bot",
"Automation"
],
"author": "Mukhammadyusuf Abdurakhimov <ceo@ainsoft.org>",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.14.6",
"dotenv": "^16.0.3",
"nodemon": "^2.0.21",
"typescript": "^4.9.5"
},
"dependencies": {
"grammy": "^1.14.1"
}
}