-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 738 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 738 Bytes
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
{
"name": "discordbot",
"version": "1.0.0",
"engines": {
"node": "16.x",
"npm": "8.x"
},
"description": "second discord bot program",
"main": "bot.js",
"scripts": {
"start": "ts-node src/bot.ts",
"commands": "node deploy-commands.js"
},
"author": "Carter Clark",
"license": "ISC",
"dependencies": {
"@discordjs/builders": "^0.11.0",
"@discordjs/rest": "^0.2.0-canary.0",
"@types/node-cron": "^3.0.4",
"discord-api-types": "^0.26.1",
"discord.js": "^13.8.0",
"dotenv": "^12.0.4",
"node-cron": "^3.0.2",
"ts-node": "^10.8.1",
"ts-prune": "^0.10.3",
"typescript": "^4.8.3"
},
"devDependencies": {
"@types/core-js": "^2.5.5",
"eslint": "^8.23.0"
}
}