-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1008 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1008 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
38
39
40
41
42
43
{
"name": "@botocrat/telegram",
"version": "0.2.8",
"description": "Simple, light-weight Telegram Bot Client for Node.js.",
"main": "./src/index.js",
"api-version": "5.7",
"types": "./types/index.d.ts",
"scripts": {
"test": "npm run lint; npx dene test",
"lint": "eslint"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"author": "Alper Kursat Unver",
"keywords": [
"telegram",
"bot",
"api",
"nodejs",
"bent",
"botocrat"
],
"license": "MIT",
"dependencies": {
"bent": "7.3.12",
"form-data": "^4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/botocrats/telegram.git"
},
"bugs": {
"url": "https://github.com/botocrats/telegram/issues"
},
"homepage": "https://github.com/botocrats/telegram#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0"
}
}