-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 937 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 937 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
32
33
34
35
36
37
{
"name": "exploding-kittens-telegram-bot",
"version": "1.0.0",
"description": "Unofficial bot to play Exploding Kittens in Telegram",
"main": "dist/app.js",
"engines": {
"node": "12.19",
"npm": "6.14"
},
"scripts": {
"build": "tsc",
"start": "node dist/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pirasalbe/Exploding-Kittens-Telegram-bot.git"
},
"keywords": [
"exploding-kittens",
"telegram-bot"
],
"author": "pirasalbe",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/pirasalbe/Exploding-Kittens-Telegram-bot/issues"
},
"homepage": "https://github.com/pirasalbe/Exploding-Kittens-Telegram-bot#readme",
"dependencies": {
"telegraf": "^3.38.0"
},
"devDependencies": {
"@types/node": "^14.14.16",
"tslint": "^6.1.3",
"typescript": "^4.1.3"
}
}