-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
39 lines (39 loc) · 880 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": "syncbot",
"version": "1.0.0",
"description": "A bot that syncs roles between one main server, and multiple other discord servers.",
"main": "run.js",
"scripts": {
"test": "node run.js",
"runReverse": "node runReverse.js",
"start": "node run.js"
},
"engines": {
"node": "16.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonathonor/syncbot.git"
},
"keywords": [
"discord",
"sync",
"bot",
"server",
"week"
],
"author": "jonathonor",
"license": "ISC",
"bugs": {
"url": "https://github.com/jonathonor/syncbot/issues"
},
"type": "module",
"homepage": "https://github.com/jonathonor/syncbot#readme",
"dependencies": {
"@discordjs/rest": "^1.0.0",
"axios": "^0.27.2",
"discord-api-types": "^0.36.2",
"discord.js": "^14.0.3",
"lowdb": "^3.0.0"
}
}