-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 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
{
"name": "jeparser",
"private": true,
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack --mode=development --watch",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"release:cws": "chrome-webstore-upload upload --source=dist --auto-publish",
"release:amo": "web-ext-submit --source-dir dist",
"release": "VER=$(npx dot-json src/manifest.json version) run-s build version release:*",
"start:firefox": "web-ext run --source-dir dist",
"start:chrome": "web-ext run --source-dir dist -t chromium",
"version": "dot-json dist/manifest.json version $VER"
},
"devDependencies": {
"@types/firefox-webext-browser": "^109.0.0",
"@types/webextension-polyfill": "^0.10.2",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"chrome-webstore-upload-cli": "^2.2.2",
"copy-webpack-plugin": "^11.0.0",
"dot-json": "^1.3.0",
"eslint": "^8.47.0",
"npm-run-all": "^4.1.5",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.4.4",
"typescript": "^4.9.5",
"web-ext": "^7.11.0",
"web-ext-submit": "^7.6.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"webextension-polyfill": "^0.10.0"
}
}