-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.31 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
{
"name": "@dietime/telegraf-media-group",
"version": "1.0.5",
"description": "All that you want to easily process media groups in telegraf.js",
"author": "Denis Glazkov <glazzk.off@mail.ru>",
"license": "MIT",
"private": false,
"homepage": "https://github.com/DieTime/telegraf-media-group",
"repository": {
"type": "git",
"url": "git+https://github.com/DieTime/telegraf-media-group.git"
},
"bugs": {
"url": "https://github.com/DieTime/telegraf-media-group/issues",
"email": "glazzk.off@mail.ru"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"telegraf",
"media",
"group",
"mediagroup",
"telegraf-media-group",
"middleware"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup"
},
"devDependencies": {
"@types/node": "^22.6.1",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"telegraf": "^4.16.3",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0"
},
"peerDependencies": {
"telegraf": "^4.16.3"
}
}