forked from zerebos/BDPluginLibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.2 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
{
"name": "pluginlibrary",
"version": "2.0.2",
"description": "Zere's library for BetterDiscord plugins.",
"repository": {
"type": "git",
"url": "https://github.com/rauenzi/BDPluginLibrary"
},
"devDependencies": {
"@babel/core": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.16.9",
"foodoc": "^0.0.9",
"jsdoc": "^3.6.7",
"mocha": "^9.1.4",
"raw-loader": "^4.0.2",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1"
},
"scripts": {
"test": "mocha --require @babel/register --recursive \"./tests/*.js\"",
"build_plugin": "node ./scripts/build.js local",
"build_plugin_packed": "node ./scripts/pack.js development",
"build": "node ./scripts/pack.js development 0PluginLibrary",
"build-prod": "node ./scripts/pack.js production 0PluginLibrary",
"build-docs": "jsdoc -r src -c jsdoc.config.json",
"webpack": "webpack",
"lint": "eslint --ext .js ./src/ --ignore-pattern '*.json'"
},
"author": "Zerebos",
"license": "MIT",
"eslintIgnore": [
"scripts/template*"
],
"defaultConfig": {
"pluginsFolder": "./examples",
"releaseFolder": "./release",
"copyToBD": true,
"addInstallScript": true
}
}