-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.19 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
{
"name": "okurrr",
"version": "1.0.0",
"description": "Okurrr is the queen of all bots, and she rightfully sits in the YAHS Discord server ruling over her subjects.",
"engines": {
"node": "16.x"
},
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/macjabeth/okurrr.git"
},
"keywords": [
"discord",
"bot",
"queen"
],
"author": "macjabeth <contact@macjabeth.com> (https://macjabeth.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/macjabeth/okurrr/issues"
},
"homepage": "https://github.com/macjabeth/okurrr#readme",
"dependencies": {
"@discordjs/builders": "^0.6.0",
"@discordjs/rest": "^0.1.0-canary.0",
"discord-api-types": "^0.23.1",
"discord.js": "^13.1.0",
"dotenv": "^10.0.0",
"node-fetch": "^3.0.0"
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 80,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false
},
"devDependencies": {
"nodemon": "^2.0.12"
}
}