-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
39 lines (39 loc) · 967 Bytes
/
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
{
"name": "live-countdown-bot",
"version": "3.0.0",
"description": "A discord bot that counts down to an event.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node shard.js",
"check-formatting": "prettier --check \"**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/radiantly/live-countdown-bot.git"
},
"keywords": [],
"author": "radiantly",
"license": "MIT",
"bugs": {
"url": "https://github.com/radiantly/live-countdown-bot/issues"
},
"homepage": "https://github.com/radiantly/live-countdown-bot#readme",
"dependencies": {
"@discordjs/rest": "^1.1.0",
"better-sqlite3": "^7.6.2",
"discord.js": "^14.3.0",
"flatqueue": "^2.0.3",
"fuse.js": "^6.6.2",
"got": "^12.4.1",
"luxon": "^3.0.3",
"object-hash": "^3.0.0"
},
"prettier": {
"printWidth": 100,
"arrowParens": "avoid"
},
"devDependencies": {
"prettier": "^2.7.1"
}
}