generated from fregante/browser-extension-template
-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
53 lines (53 loc) · 1.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
{
"private": true,
"scripts": {
"lint": "run-p lint:*",
"lint:js": "xo source",
"lint-fix": "run-p 'lint:* -- --fix'",
"test": "run-s lint:* build",
"build": "webpack --mode=production",
"watch": "webpack --mode=development --watch",
"version": "dot-json distribution/manifest.json version $VER",
"release:cws": "webstore upload --source=distribution --auto-publish",
"release:amo": "web-ext-submit --source-dir distribution",
"release": "VER=$(daily-version) run-s build version release:*"
},
"devDependencies": {
"@types/firefox-webext-browser": "^120.0.3",
"chrome-webstore-upload-cli": "^1.2.0",
"copy-webpack-plugin": "^12.0.2",
"daily-version": "^1.0.0",
"dot-json": "^1.2.0",
"eslint": "^6.8.0",
"eslint-config-xo": "^0.26.0",
"npm-run-all": "^4.1.5",
"size-plugin": "^2.0.1",
"terser-webpack-plugin": "^5.3.10",
"utc-version": "^2.0.1",
"web-ext": "^4.1.0",
"web-ext-submit": "^4.1.0",
"webpack": "^5.92.0",
"webpack-cli": "^5.1.4",
"xo": "^0.28.1"
},
"dependencies": {
"turndown": "^7.2.0",
"turndown-plugin-gfm": "^1.0.2"
},
"xo": {
"envs": [
"browser"
],
"ignores": [
"distribution"
],
"globals": [
"browser",
"chrome",
"globalThis"
],
"rules": {
"unicorn/string-content": "off"
}
}
}