forked from telegraf/telegraf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.2 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "telegraf",
"version": "3.38.0",
"description": "Modern Telegram Bot Framework",
"license": "MIT",
"author": "Vitaly Domnikov <[email protected]>",
"homepage": "https://github.com/telegraf/telegraf#readme",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/telegraf/telegraf.git"
},
"bugs": {
"url": "https://github.com/telegraf/telegraf/issues"
},
"main": "lib/index.js",
"exports": {
"import": "./lib/index.mjs",
"require": "./lib/index.js"
},
"files": [
"bin/*",
"lib/**/*.js",
"lib/index.mjs",
"typings/**/*.d.ts"
],
"bin": {
"telegraf": "./bin/telegraf"
},
"scripts": {
"prepare": "npm run build && mjs-entry src/index.ts > lib/index.mjs",
"build": "tsc --build docs/examples",
"build:docs": "typedoc",
"pretest": "npm run build",
"test": "ava test/*",
"lint": "eslint --cache .",
"clean": "git clean -fX docs/build/ lib/ typings/"
},
"husky": {
"hooks": {
"pre-commit": "npm test && npm run lint"
}
},
"type": "commonjs",
"engines": {
"node": ">=12"
},
"types": "./typings/index.d.ts",
"dependencies": {
"debug": "^4.2.0",
"minimist": "^1.2.5",
"module-alias": "^2.2.2",
"node-fetch": "^2.6.1",
"sandwich-stream": "^2.0.2",
"typegram": "^3.0.0"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/node": "^14.11.7",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"ava": "^3.13.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-ava": "^11.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.3.0",
"mjs-entry": "gist:de6257751f54b3c66319bae8d2a8aea0",
"prettier": "2.2.0",
"typedoc": "^0.19.2",
"typescript": "^4.1.2"
},
"keywords": [
"telegraf",
"telegram",
"telegram bot api",
"bot",
"botapi",
"bot framework"
]
}