-
-
Notifications
You must be signed in to change notification settings - Fork 381
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 940 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 940 Bytes
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
{
"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.26.9",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@biomejs/biome": "1.9.4",
"babel-loader": "^9.2.1",
"raw-loader": "^4.0.2",
"webpack": "^5.98.0",
"webpack-cli": "^5.1.4"
},
"babel": {
"presets": [
[
"@babel/env",
{
"targets": {
"node": "16.17.1",
"chrome": "108"
}
}
],
[
"@babel/preset-react",
{
"pragma": "BdApi.React.createElement"
}
]
]
},
"dependencies": {
"@types/betterdiscord": "github:zerthox/betterdiscord-types"
}
}