-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
37 lines (37 loc) · 1015 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
{
"name": "noty-discord-bot",
"version": "2.0.0",
"description": "Noty Bot implements what Discord still doesn't have: notify you, when someone goes online or offline. Useful for tracking bot crashes",
"main": "./src/index.js",
"scripts": {
"start": "npm run sync-commands && npm run start-only",
"start-only": "node ./src/index.js",
"sync-commands": "node ./src/scripts/sync-slash-commands.js",
"sync-slash-commands": "node ./src/scripts/sync-slash-commands.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Sarmerer/noty-discrd-bot.git"
},
"keywords": [
"discord.js",
"discord",
"bot"
],
"author": "sarmerer",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sarmerer/noty-discord-bot/issues"
},
"homepage": "https://github.com/Sarmerer/noty-discord-bot#readme",
"dependencies": {
"discord.js": "^14.16.2",
"lowdb": "^1.0.0"
},
"imports": {
"#root": "./"
},
"engines": {
"node": ">=16.7.0"
}
}