-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.17 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.17 KB
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": "paradigm",
"version": "1.0.0",
"description": "A Fortnite-themed Discord bot with a variety of commands",
"main": "./dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"lint": "eslint . --fix",
"start": "npm run build && node ."
},
"keywords": [
"fortnite",
"discord",
"discord-js",
"bot"
],
"author": "Squiddleton",
"license": "MIT",
"dependencies": {
"@napi-rs/canvas": "^0.1.30",
"@sentry/node": "^7.98.0",
"@squiddleton/discordjs-util": "^1.3.0",
"@squiddleton/epic": "^0.5.0",
"@squiddleton/fortnite-api": "^2.0.2",
"@squiddleton/util": "^1.0.1",
"discord.js": "^14.17.2",
"mongoose": "^8.2.3",
"node-cron": "^3.0.2",
"string-similarity": "^4.0.4"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@stylistic/eslint-plugin": "^4.2.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^18.11.12",
"@types/node-cron": "^3.0.6",
"@types/string-similarity": "^4.0.0",
"eslint": "^9.26.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-tsdoc": "^0.4.0",
"typescript": "^5.0.2",
"typescript-eslint": "^8.32.0"
},
"engines": {
"node": ">=18.0.0"
}
}