-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.65 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
{
"name": "blaseball-plus",
"version": "1.13.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:js:dev": "webpack",
"build:js:prod": "webpack --env production",
"build:ext:unsigned": "cd addon && web-ext build --overwrite-dest",
"build:ext:signed": "cd addon && web-ext sign",
"build:dev": "yarn run build:js:dev && yarn run build:ext:unsigned",
"build:prod:unsigned": "yarn run build:js:prod && yarn run build:ext:unsigned",
"build:prod:signed": "yarn run build:js:prod && yarn run build:ext:signed",
"build": "yarn run build:dev",
"build:src": "shopt -s extglob\nrm -f addon/web-ext-artifacts/source.tar.gz && tar -czvf addon/web-ext-artifacts/source.tar.gz !(node_modules|addon) addon/!(web-ext-artifacts|*.js*)",
"start:firefox": "webpack watch",
"start:chromium": "webpack watch --env chromium",
"start:edge": "webpack watch --env chromium=microsoft-edge-beta",
"start": "yarn run start:firefox"
},
"author": "leo60228",
"license": "GPL-2.0-only",
"devDependencies": {
"@leo60228/web-ext-webpack-plugin": "^1.0.1",
"css-loader": "^5.0.2",
"eslint": "^7.20.0",
"style-loader": "^2.0.0",
"web-ext": "^5.5.0",
"webpack": "^5.23.0",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"@popperjs/core": "^2.8.6",
"astring": "^1.7.4",
"camelcase": "^6.2.0",
"estree-walker": "^3.0.0",
"meriyah": "^4.1.5",
"webextension-polyfill": "^0.7.0"
},
"type": "module"
}