-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.13 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
{
"name": "nova-makeshift",
"version": "7.2.3",
"description": "A bot for the Makeshift community.",
"main": "dist/server.js",
"type": "module",
"engines": {
"node": ">=17.0.0 <=20"
},
"scripts": {
"start": "node .",
"start:register": "node dist/register.js",
"lint": "npx prettier --write . && npx eslint . && npx --package=typescript tsc --noEmit",
"debug": "npx --package=typescript tsc && npm start",
"build": "npm run lint && rm -rf dist/ && npx --package=typescript tsc"
},
"keywords": [
"discord",
"bot"
],
"author": "NKN1396",
"license": "MIT",
"dependencies": {
"@discordjs/rest": "^2.0.0",
"axios": "^1.6.2",
"discord.js": "^14.15.3",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/lodash": "^4.14.199",
"@types/node": "20.10.0",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Makeshift-Community/nova-makeshift"
}
}