-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.3 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
{
"name": "notifiarr-bot",
"version": "1.0.0",
"description": "",
"license": "ISC",
"author": "",
"type": "module",
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc --build",
"prepare": "node -e \"process.env.NODE_ENV != 'production' && process.exit(1)\" || husky",
"prestart": "npm run build",
"start": "node .",
"test": "xo"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"xo": {
"prettier": true,
"rules": {
"@typescript-eslint/consistent-type-definitions": [
"error",
"interface"
],
"unicorn/filename-case": [
"error",
{
"case": "camelCase"
}
],
"import/order": [
"error",
{
"groups": [
[
"builtin",
"external"
],
"parent",
"sibling",
"index"
]
}
]
},
"space": true
},
"prettier": {
"bracketSpacing": true,
"plugins": [
"prettier-plugin-organize-imports",
"prettier-plugin-packagejson"
],
"printWidth": 120,
"singleQuote": true,
"trailingComma": "all"
},
"npmpackagejsonlint": {
"extends": [
"npm-package-json-lint-config-default"
]
},
"dependencies": {
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"winston": "^3.11.0"
},
"devDependencies": {
"@tsconfig/node-lts": "^20.0.0",
"husky": "^9.0.6",
"lint-staged": "^15.0.0",
"npm-package-json-lint": "^7.0.0",
"npm-package-json-lint-config-default": "^6.0.0",
"package-changed": "^3.0.0",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-packagejson": "^2.4.6",
"rimraf": "^5.0.5",
"typescript": "^5.2.2",
"xo": "^0.58.0"
},
"engines": {
"node": "20.x",
"npm": "10.x"
}
}