forked from EddieHubCommunity/EddieBotBreakout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
51
52
{
"name": "voice-bot",
"version": "0.2.0",
"description": "Speed networking bot for discord",
"main": "./prod/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint src --max-warnings 0",
"start": "node -r dotenv/config ./prod/index.js",
"start:dev": "npm run build && npm run start",
"test": "echo 'no tests yet'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EddieHubCommunity/DiscordBot-SpeedNetworking.git"
},
"keywords": [
"discord",
"typescript",
"node",
"discord.js"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/EddieHubCommunity/DiscordBot-SpeedNetworking/issues"
},
"homepage": "https://github.com/EddieHubCommunity/DiscordBot-SpeedNetworking#readme",
"engines": {
"node": "^16.11.0",
"npm": "^8.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsdoc": "^37.0.3",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
},
"dependencies": {
"@discordjs/builders": "^0.8.1",
"@discordjs/rest": "^0.1.0-canary.0",
"discord-api-types": "^0.24.0",
"discord.js": "^13.2.0",
"dotenv": "^10.0.0",
"winston": "^3.3.3"
}
}