-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.46 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.js-bot-template",
"version": "0.1.0",
"description": "Public discord.js bot template with command, event and error handler",
"main": "index.js",
"directories": {
"example": "examples"
},
"scripts": {
"start": "node index.js",
"test": "npx prettier --check .",
"contributors:add": "npx all-contributors add",
"contributors:generate": "npx all-contributors generate",
"translators:generate": "npx crowdin-contributors --maxContributors=100",
"lint": "npx prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/King-BR/Discord.js-Bot-Template.git"
},
"keywords": [],
"author": "https://github.com/King-BR",
"license": "MIT",
"bugs": {
"url": "https://github.com/King-BR/Discord.js-Bot-Template/issues"
},
"homepage": "https://github.com/King-BR/Discord.js-Bot-Template#readme",
"dependencies": {
"chalk": "^4.1.0",
"cpu-stat": "^2.0.1",
"date-fns": "^2.16.1",
"discord-player": "^3.4.0",
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"enmap": "^5.8.2",
"fs": "0.0.1-security",
"os": "^0.1.1",
"path": "^0.12.7"
},
"devDependencies": {
"all-contributors-cli": "^6.20.0",
"babel-eslint": "^10.1.0",
"crowdin-contributors-allcontributors-style": "^0.1.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0"
}
}