forked from Neodymium7/BundleBD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.43 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
{
"name": "bundlebd",
"version": "3.1.0",
"description": "A simple bundler for BetterDiscord plugins. Bundles plugins composed of multiple files/modules. Allows for the use of Typescript, JSX, CSS, CSS preprocessors, and more.",
"keywords": [
"betterdiscord",
"betterdiscord-plugins"
],
"homepage": "https://github.com/Neodymium7/BundleBD/wiki",
"repository": "github:Neodymium7/BundleBD",
"bugs": "https://github.com/Neodymium7/BundleBD/issues",
"license": "MIT",
"author": {
"name": "Neodymium",
"url": "https://www.neodymium.dev"
},
"bin": "bin.js",
"main": "index.js",
"types": "types/index.d.ts",
"files": [
"types"
],
"scripts": {
"build": "node scripts/build.js",
"dev": "node scripts/build.js watch",
"prepublishOnly": "node scripts/build.js",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"esbuild": "^0.14.49",
"eslint": "^8.25.0",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@rollup/plugin-image": "^3.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-replace": "^4.0.0",
"@svgr/rollup": "^6.4.0",
"@types/bdapi": "github:zerthox/betterdiscord-types",
"less": "^4.1.3",
"rollup": "^2.79.1",
"rollup-plugin-esbuild": "^4.10.1",
"rollup-plugin-styles": "^4.0.0",
"sass": "^1.53.0",
"stylus": "^0.59.0"
}
}