-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.23 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
{
"name": "discordgamelobbymanager",
"description": "A Bot that helps create game lobbies",
"version": "1.0.0",
"main": "main.js",
"type": "module",
"scripts": {
"eslint": "eslint . --ext .js",
"start": "node -r dotenv/config main.js",
"test": "echo \"Error: no test specified\" && exit 1",
"update-commands": "node -r dotenv/config setCommands.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hy2999la/discordGameLobbyManager.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hy2999la/discordGameLobbyManager/issues"
},
"homepage": "https://github.com/hy2999la/discordGameLobbyManager#readme",
"dependencies": {
"bufferutil": "^4.0.8",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"node-fetch": "^2.7.0",
"utf-8-validate": "^6.0.3",
"uuid": "^9.0.1",
"zlib-sync": "^0.1.9"
},
"devDependencies": {
"eslint": "^8.53.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^9.0.0",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"prettier": "2.8.3"
}
}