-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
98 lines (98 loc) · 2.47 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "salabot",
"version": "1.0.0",
"main": "src/index.js",
"contributors": [
"Antti <[email protected]>"
],
"license": "AGPL3",
"type": "module",
"private": true,
"scripts": {
"start": "node .",
"lint": "yarn eslint src --fix --ext js",
"format": "yarn prettier --write src",
"update": "yarn upgrade-interactive --latest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Salachat/SalaBot.git"
},
"bugs": {
"url": "https://github.com/Salachat/SalaBot/issues"
},
"keywords": [
"discord",
"bot"
],
"engines": {
"node": ">=16"
},
"dependencies": {
"@joshdb/core": "^1.2.7",
"@joshdb/sqlite": "^1.1.9",
"bent": "^7.3.12",
"bufferutil": "^4.0.6",
"discord.js": "^13.6.0",
"fast-xml-parser": "^4.0.7",
"he": "^1.2.0",
"node-cron": "^3.0.0",
"pingmc": "^3.1.0",
"utf-8-validate": "^5.0.9",
"zlib-sync": "^0.1.7"
},
"devDependencies": {
"eslint": "^8.12.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.1"
},
"eslintConfig": {
"env": {
"es2022": true,
"node": true
},
"extends": [
"airbnb-base",
"prettier"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"no-console": "off",
"import/extensions": "off",
"no-param-reassign": "off",
"import/no-unresolved": [
"error",
{
"commonjs": true,
"caseSensitive": true,
"ignore": [
"config\\.js$"
]
}
]
}
},
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"semi": true,
"singleQuote": false,
"quoteProps": "consistent",
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "always",
"endOfLine": "lf"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.{js,json}": "prettier --write"
}
}