-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
74 lines (74 loc) · 1.99 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "cakebot",
"version": "2.1.0",
"description": "A new Discord bot with fun and helpful features.",
"keywords": [
"discord",
"bot"
],
"homepage": "https://cakebot.club",
"bugs": {
"url": "https://github.com/cakebotpro/cakebot/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cakebotpro/cakebot.git"
},
"license": "AGPL-3.0",
"author": "Reece Dunham <[email protected]>",
"main": "build/index.js",
"types": "build/index.d.ts",
"directories": {
"lib": "build"
},
"files": [
"build",
".github/SECURITY.md",
"content"
],
"scripts": {
"build": "rimraf build && tsc",
"lint": "eslint src/**/**/*.ts src/**/*.ts src/*.ts --fix",
"prettier": "prettier --write **/*.{js,ts,md,yml,json}",
"start": "node launcher-prod.js"
},
"prettier": {
"semi": false,
"tabWidth": 4
},
"dependencies": {
"@octokit/core": "^3.5.1",
"chalk": "^4.1.2",
"csv-parse": "^4.16.0",
"discord.js": "^12.5.3",
"kdt": "^0.1.0",
"node-fetch": "^2.6.7",
"random": "^3.0.6",
"source-map-support": "^0.5.19",
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/node": "^16.7.1",
"@types/node-fetch": "^2.5.12",
"@types/source-map-support": "^0.5.4",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-promise": "^5.1.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
},
"optionalDependencies": {
"bufferutil": "^4.0.3",
"erlpack": "^0.1.3",
"utf-8-validate": "^5.0.5",
"zlib-sync": "^0.1.7"
},
"engines": {
"node": "14.x",
"yarn": ">=1.17"
}
}