-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "djs-marshal",
"description": "A simple slash command manager for typescript",
"version": "2.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/DeathVenom54/djs-marshal.git",
"author": "Deathvenom54 <[email protected]>",
"license": "MIT",
"keywords": [
"discord",
"discord.js",
"slash",
"command",
"interaction"
],
"scripts": {
"build": "tsc",
"test": "node dist/testing/test.js",
"dev": "tsc -W",
"lint": "eslint src/** --fix",
"docs": "typedoc --plugin ./node_modules/typedoc-theme-hierarchy/dist/index.js"
},
"peerDependencies": {
"discord.js": ">=14.x.x"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/deep-equal": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"discord.js": "14",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"typedoc": "^0.22.15",
"typedoc-theme-hierarchy": "^1.1.1",
"typescript": "^4.6.4"
},
"dependencies": {
"chalk": "4.1.2",
"deep-equal": "^2.0.5"
}
}