This repository has been archived by the owner on Jul 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.64 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
{
"name": "slashdiscord.js",
"version": "1.0.12",
"description": "An advanced slash command handler for discord",
"main": "dist/index.js",
"directories": {
"example": "examples"
},
"dependencies": {
"chalk": "^4.1.0",
"node-fetch": "^2.6.1"
},
"peerDependencies": {
"discord.js": "^12.5.1"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/clui": "^0.3.0",
"@types/figlet": "^1.2.1",
"@types/inquirer": "^7.3.1",
"@types/node-fetch": "^2.5.8",
"clui": "^0.3.6",
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"figlet": "^1.5.0",
"inquirer": "^7.3.3",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"scripts": {
"test": "ts-node examples",
"test:async": "ts-node examples/async",
"test:embeds": "ts-node examples/embeds",
"test:guildcommand": "ts-node examples/guildCommand",
"test:interactionmessage": "ts-node examples/interactionMessage",
"test:options": "ts-node examples/options",
"test:sharding": "ts-node examples/shardingExample",
"test:subcommands": "ts-node examples/subcommands",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JeroenoBoy/SlashDiscord.js.git"
},
"keywords": [
"ts",
"typescript",
"discord",
"discord.js",
"discord-bot",
"interactions",
"bot",
"slash",
"command",
"commands",
"slashcommand",
"slashcommands"
],
"author": "Crystal Development",
"license": "MIT",
"bugs": {
"url": "https://github.com/JeroenoBoy/SlashDiscord.js/issues"
},
"homepage": "https://github.com/JeroenoBoy/SlashDiscord.js#readme"
}