-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "bossoep",
"version": "1.0.0",
"description": "Open-source Discord bot for handling basic features.",
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/HalloSouf/bossoep.git"
},
"bugs": {
"url": "https://github.com/HalloSouf/bossoep/issues"
},
"author": "HalloSouf",
"license": "GPL-3.0",
"scripts": {
"build": "tsc --build",
"start": "tsc && node build/index.js",
"watch": "tsc --watch",
"dev": "nodemon build/index.js",
"lint": "prettier --check . && eslint .",
"format": "prettier --write ."
},
"devDependencies": {
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"@discordjs/core": "^1.0.1",
"@discordjs/ws": "^1.0.1",
"dotenv": "^16.3.1",
"hallo-logger": "^1.0.1"
}
}