-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 859 Bytes
/
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
{
"name": "discord-slash-command-handler",
"version": "3.2.2",
"description": "an packaged Command handler for discord slash commands",
"main": "dist/index.js",
"typings": "src/",
"scripts": {
"test": "ts-node src/index.ts",
"bug-fix": "tsc && git add . && git commit -m \"bug fix\" && git push origin master && npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/KartikeSingh/discord-slash-command-handler"
},
"keywords": [
"discord",
"slash",
"command",
"handler"
],
"author": "shisui",
"license": "MIT",
"dependencies": {
"discord.js": "^13.2.0",
"mongoose": "^6.0.4",
"ms-prettify": "^1.2.1"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/mongoose": "^5.11.97",
"@types/node": "^16.10.3"
}
}