-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 KB
/
package.json
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
38
39
40
41
42
43
44
45
{
"name": "teletron-ts",
"version": "1.1.4",
"description": "Fast and Flexible Telegram Bot API Framework for Node.js written in TypeScript.",
"main": "dist/main.js",
"scripts": {
"build:lib": "npx tsup",
"build:docs": "npx typedoc src/main.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/naseif/teletron-ts.git"
},
"keywords": [
"telegram",
"telegram-bots",
"telegram-api",
"telegram-bot-api",
"telegram-node-api",
"telegram-node",
"telegram-nodejs",
"node-telegram-bot-api",
"telegram-bot-api-nodejs",
"telegram-bot-api-node"
],
"author": "naseif",
"license": "MIT",
"bugs": {
"url": "https://github.com/naseif/teletron-ts/issues"
},
"homepage": "https://github.com/naseif/teletron-ts#readme",
"devDependencies": {
"@types/mime-types": "^2.1.1",
"@types/node": "^17.0.13",
"tsup": "^5.12.9",
"typedoc": "^0.22.18",
"typescript": "^4.5.5"
},
"dependencies": {
"axios": "^1.2.1",
"eventemitter3": "^4.0.7",
"form-data": "^4.0.0",
"mime-types": "^2.1.34"
}
}