-
-
Notifications
You must be signed in to change notification settings - Fork 381
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1009 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1009 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
43
44
{
"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.29.0",
"@babel/preset-env": "^7.29.2",
"@babel/preset-react": "^7.28.5",
"@biomejs/biome": "2.4.13",
"babel-loader": "^10.1.1",
"discord-client-types": "^0.0.12",
"discord-types": "^1.3.3",
"raw-loader": "^4.0.2",
"webpack": "^5.106.2",
"webpack-cli": "^7.0.2"
},
"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"
}
}