-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.22 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
{
"name": "discord-slasho",
"version": "1.1.2",
"description": "A light framework to build modern discord.js bots with as little boilerplate as possible 🤖",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --detectOpenHandles --runInBand",
"dev": "tsc --watch",
"build": "tsc",
"lint": "npx eslint ./src/*.ts --fix",
"publish": "git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LehuyH/slasho.git"
},
"keywords": [
"discord",
"discord.js",
"framework",
"javascript",
"slash",
"commands"
],
"author": "LehuyH",
"license": "MIT",
"bugs": {
"url": "https://github.com/LehuyH/slasho/issues"
},
"homepage": "https://github.com/LehuyH/slasho#readme",
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"jest": "^27.1.0",
"typescript": "^4.4.2"
},
"dependencies": {
"consola": "^2.15.3",
"discord.js": "^13.1.0",
"glob": "^7.1.7"
},
"files": [
"dist/**/*"
]
}