-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
66 lines (66 loc) · 1.84 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
{
"name": "clarence",
"version": "1.0.0",
"description": "A multipurpose bot with admin, fun and information commands",
"main": "src/index.js",
"author": "Kieran Robson",
"license": "MIT",
"scripts": {
"dev": "nodemon -L src/index.js",
"spell": "cspell /**/",
"spell:code": "cspell src/**/",
"lint": "npx eslint src",
"lint:fix": "yarn run lint -- --fix",
"lint:language": "alex src/**/",
"lint-ci": "eslint . && prettier -c \"**/*.{md,json,yml,yaml}\"",
"prettier:code": "npx prettier src --check",
"prettier:code:fix": "yarn run prettier -- --write",
"prettier:all:fix": "prettier . --write",
"format": "yarn run prettier:all:fix && yarn run lint:fix"
},
"keywords": [
"multipurpose",
"discord",
"discord-bot"
],
"lint-staged": {
"*.{ts,tsx,js,jsx}": "eslint --fix",
"*.{json,md,html,css,scss,js,jsx,ts,tsx}": "prettier --write"
},
"dependencies": {
"@discordjs/builders": "^1.10.0",
"@iamtraction/google-translate": "^2.0.1",
"axios": "^1.7.9",
"canvas": "^3.1.0",
"discord-api-types": "^0.37.118",
"discord.js": "^14.17.3",
"dotenv": "^16.4.7",
"glob": "^11.0.1",
"iso-639-1": "^3.1.4",
"jsdom": "^26.0.0",
"lyrics-searcher": "^1.0.58",
"lyrics-searcher-musixmatch": "^1.0.2",
"minecraft-assets": "^1.13.0",
"minecraft-data": "^3.83.1",
"mongoose": "^8.9.5",
"node-movie": "^3.0.0",
"npm-stats-api": "^2.1.2",
"openweather-apis": "^4.5.0",
"r6s-stats-api": "^1.3.0",
"twemoji-parser": "^14.0.0"
},
"devDependencies": {
"@cspell/cspell-bundled-dicts": "^8.17.3",
"alex": "^11.0.1",
"cspell": "^8.17.3",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-sort-requires-by-path": "^1.0.2",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"nodemon": "^3.1.9",
"prettier": "^3.4.2"
}
}