-
-
Notifications
You must be signed in to change notification settings - Fork 390
/
package.json
47 lines (47 loc) · 1.09 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
{
"name": "showhiddenchannels",
"description": "A plugin which displays all hidden Channels and allows users to view information about them, this won't allow you to read them (impossible)",
"main": "ShowHiddenChannels.plugin.js",
"scripts": {
"build": "webpack --progress --color"
},
"author": "JustOptimize (Oggetto)",
"license": "GPL-3.0-only",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"babel-loader": "^9.1.3",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"raw-loader": "^4.0.2",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
},
"babel": {
"presets": [
[
"@babel/env",
{
"targets": {
"node": "16.17.1",
"chrome": "108"
}
}
],
[
"@babel/preset-react",
{
"pragma": "BdApi.React.createElement"
}
]
]
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"singleQuote": true,
"printWidth": 140
}
}