-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
103 lines (103 loc) · 1.92 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@telegraf/session",
"version": "2.0.0-beta.7",
"description": "Session store adapters for Telegraf",
"main": "./memory.js",
"homepage": "https://github.com/telegraf/session",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/telegraf/session.git"
},
"bugs": {
"url": "https://github.com/telegraf/session/issues"
},
"scripts": {
"clean": "rimraf ./*.js ./*.d.ts",
"prepare": "rimraf ./*.js ./*.d.ts && tsc"
},
"keywords": [
"telegraf",
"telegram",
"bot",
"session",
"mongodb"
],
"author": "Muthu Kumar <@MKRhere> (https://mkr.pw)",
"license": "MIT",
"files": [
"./*.js",
"./*.d.ts"
],
"exports": {
"./mongodb": {
"types": "./mongodb.d.ts",
"default": "./mongodb.js"
},
"./redis": {
"types": "./redis.d.ts",
"default": "./redis.js"
},
"./mysql": {
"types": "./mysql.d.ts",
"default": "./mysql.js"
},
"./pg": {
"types": "./pg.d.ts",
"default": "./pg.js"
},
"./sqlite": {
"types": "./sqlite.d.ts",
"default": "./sqlite.js"
}
},
"peerDependencies": {
"@types/better-sqlite3": "^7.6.9",
"@types/pg": "^8.11.0",
"better-sqlite3": "^9.3.0",
"kysely": "0.27.2 <1",
"mongodb": "^6.3.0",
"mysql2": "^3.9.0",
"pg": "^8.11.3",
"redis": "^4.6.12",
"telegraf": ">=4.12.0"
},
"peerDependenciesMeta": {
"@types/better-sqlite3": {
"optional": true
},
"@types/pg": {
"optional": true
},
"better-sqlite3": {
"optional": true
},
"kysely": {
"optional": true
},
"mongodb": {
"optional": true
},
"mysql2": {
"optional": true
},
"pg": {
"optional": true
},
"redis": {
"optional": true
}
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.9",
"@types/pg": "^8.11.0",
"better-sqlite3": "^9.3.0",
"kysely": "^0.27.2",
"mongodb": "^6.3.0",
"mysql2": "^3.9.0",
"pg": "^8.11.3",
"redis": "^4.6.12",
"rimraf": "^5.0.5",
"telegraf": "^4.15.3",
"typescript": "^5.3.3"
}
}