This repository has been archived by the owner on Feb 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
77 lines (77 loc) · 2.26 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
{
"name": "@betterdiscordbuilder/bdbuilder",
"version": "1.2.23",
"description": "Enhanced plugins transpiler for BetterDiscord. Allows you to build plugin with multiple files at once.",
"main": "./dist/bdbuilder.min.js",
"dependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-modules-commonjs": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/plugin-transform-typescript": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@ffmpeg/core": "^0.8.5",
"@sucrase/webpack-loader": "^2.0.0",
"@types/css": "^0.0.31",
"babel-loader": "^8.2.2",
"babel-plugin-minify-dead-code-elimination": "^0.5.1",
"coffee-loader": "^3.0.0",
"css-loader": "^5.0.1",
"coffeescript": "^2.5.1",
"dotenv": "^9.0.2",
"fs-extra": "^9.0.1",
"js-beautify": "^1.13.1",
"less": "^4.0.0",
"less-loader": "^7.2.1",
"raw-loader": "^4.0.2",
"regenerator-runtime": "^0.13.7",
"sass": "^1.34.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"stylus": "^0.54.8",
"stylus-loader": "^4.3.1",
"sucrase": "^3.18.1",
"webpack": "^5.11.1",
"lodash": "^4.17.21",
"yargs": "^16.2.0"
},
"preferGlobal": true,
"bin": {
"bdbuilder": "./dist/bdbuilder.min.js"
},
"scripts": {
"build": "webpack --progress --color",
"build:no-spam": "webpack --color",
"watch": "webpack --progress --color --watch"
},
"repository": {
"type": "git",
"url": "git://github.com/BetterDiscordBuilder/bdbuilder.git"
},
"authors": [
"Kyza",
"Strencher"
],
"license": "LGPL 2.1",
"bugs": {
"url": "https://github.com/BetterDiscordBuilder/bdbuilder/issues"
},
"homepage": "https://github.com/BetterDiscordBuilder/bdbuilder#readme",
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.5",
"@types/fs-extra": "^9.0.11",
"@types/lodash": "^4.14.170",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.7",
"webpack-cli": "^4.7.2"
},
"files": [
"dist/**",
"common/**",
"README.md"
]
}