generated from fregante/browser-extension-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 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
52
53
54
55
{
"private": true,
"scripts": {
"build": "rm -rf distribution && rm -f distribution.zip && parcel build source/manifest.json --no-content-hash --no-source-maps --dist-dir distribution --no-cache --detailed-report 0 && zip -r distribution.zip distribution",
"lint": "run-p lint:*",
"lint-fix": "run-p 'lint:* -- --fix'",
"lint:css": "stylelint source/**/*.css",
"lint:js": "xo",
"test": "run-p lint:* build",
"watch": "parcel watch source/manifest.json --dist-dir distribution --no-cache --no-hmr"
},
"browserslist": [
"last 1 Chrome version",
"last 1 Firefox version"
],
"xo": {
"envs": [
"browser",
"webextensions"
]
},
"stylelint": {
"extends": "stylelint-config-xo"
},
"dependencies": {
"material-design-icons": "^3.0.1",
"materialize-css": "^1.0.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.43",
"vue": "^3.3.4",
"webext-base-css": "^1.4.1",
"webext-options-sync": "^3.1.0"
},
"devDependencies": {
"@parcel/config-webextension": "^2.6.2",
"@parcel/transformer-vue": "^2.6.2",
"npm-run-all": "^4.1.5",
"parcel": "^2.6.2",
"stylelint": "^14.9.1",
"stylelint-config-xo": "^0.21.0",
"xo": "^0.54.2"
},
"webExt": {
"sourceDir": "distribution",
"run": {
"startUrl": [
"https://github.com/bellingcat/uniform-timezone"
]
}
},
"@parcel/bundler-default-bug": "https://github.com/parcel-bundler/parcel/issues/8071",
"@parcel/bundler-default": {
"minBundles": 10000000
}
}