forked from telegraf/session
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 1.83 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
{
"name": "@telegraf/session",
"version": "2.0.0-beta.4",
"description": "Session store adapters for Telegraf",
"main": "./memory.js",
"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": {
"default": "./mongodb.js",
"types": "./mongodb.d.ts"
},
"./redis": {
"default": "./redis.js",
"types": "./redis.d.ts"
},
"./mysql": {
"default": "./mysql.js",
"types": "./mysql.d.ts"
},
"./pg": {
"default": "./pg.js",
"types": "./pg.d.ts"
},
"./sqlite": {
"default": "./sqlite.js",
"types": "./sqlite.d.ts"
},
"./surrealdb": {
"default": "./surrealdb.js",
"types": "./surrealdb.d.ts"
}
},
"peerDependencies": {
"@types/better-sqlite3": "^7.6.3",
"@types/pg": "^8.6.6",
"better-sqlite3": "^8.1.0",
"kysely": "^0.23.4",
"mongodb": "^5.0.1",
"mysql2": "^3.1.2",
"pg": "^8.9.0",
"redis": "^4.6.4",
"surrealdb.js": "^0.5.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
},
"surrealdb.js": {
"optional": true
}
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.3",
"@types/pg": "^8.6.6",
"better-sqlite3": "^8.1.0",
"kysely": "^0.23.4",
"mongodb": "^5.0.1",
"mysql2": "^3.1.2",
"pg": "^8.9.0",
"redis": "^4.6.4",
"rimraf": "^3.0.2",
"surrealdb.js": "^0.5.0",
"typescript": "^4.8.4"
}
}