-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1 KB
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
{
"name": "jsdiscordbot",
"version": "1.0.9",
"description": "A Telegraf-inspired Discord.js bot framework with scenes, session, and markup.",
"main": "index.js",
"type": "module",
"exports": {
".": "./index.js"
},
"files": [
"index.js",
"context.js",
"markup.js",
"scenes.js",
"session.js",
"sessionStore.js",
"middlewares/",
"tests/"
],
"keywords": [
"discord",
"bot",
"framework",
"discord.js",
"telegraf",
"jsdiscordbot"
],
"author": "KH Rasedul <rasedul.dev@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/khrasedul-dev/jsdiscordbot.git"
},
"bugs": {
"url": "https://github.com/khrasedul-dev/jsdiscordbot/issues"
},
"homepage": "https://github.com/khrasedul-dev/jsdiscordbot#readme",
"scripts": {
"test": "echo \"No tests yet\""
},
"dependencies": {
"axios": "^1.6.7",
"discord.js": "^14.14.1"
},
"devDependencies": {
"dotenv": "^17.2.2"
}
}