-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.79 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.79 KB
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
{
"name": "betterdiscord-addons",
"author": "Filip Majetic",
"license": "MIT",
"description": "BetterDiscord addons from me",
"version": "0.0.1",
"private": "true",
"scripts": {
"dev": "bundlebd --dev --plugin",
"bundle": "bundlebd --plugin",
"bump": "ts-node scripts/bump.ts"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"bundlebd": "^3.0.0",
"eslint": "^8.27.0",
"eslint-config-react-app": "^7.0.1",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"eslintConfig": {
"extends": [
"react-app"
],
"ignorePatterns": "dist/",
"rules": {
"no-console": [
"error",
{
"allow": [
"info",
"warn",
"error"
]
}
],
"no-debugger": "error",
"sort-imports": "off"
}
},
"prettier": {
"printWidth": 120,
"semi": true,
"tabWidth": 2,
"useTabs": false,
"endOfLine": "auto",
"singleQuote": false,
"jsxSingleQuote": false,
"bracketSpacing": false,
"arrowParens": "avoid",
"trailingComma": "none",
"importOrder": [
"^react$|^node:",
"^@?\\w+",
"components",
"^\\.\\.?.*/\\w+$",
"\\.\\w+$"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true
},
"homepage": "https://gitlab.com/fmajestic/betterdiscord-addons#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/fmajestic/betterdiscord-addons.git"
},
"bugs": {
"url": "https://gitlab.com/fmajestic/betterdiscord-addons/issues"
},
"keywords": [
"discord",
"betterdiscord",
"addon",
"plugin"
]
}