forked from cjmaxik/more-boosty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 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
42
43
44
45
46
47
{
"private": true,
"scripts": {
"clean": "shx rm -rf distribution .parcel-cache",
"build": "npm run clean && parcel build source/manifest.json --no-content-hash --no-source-maps --dist-dir distribution --no-cache --detailed-report 0",
"watch": "npm run clean && parcel watch source/manifest.json --host localhost --dist-dir distribution --no-cache"
},
"engines": {
"node": ">=18"
},
"browserslist": [
"last 1 Chrome version",
"last 1 Firefox version"
],
"standard": {
"globals": [
"chrome",
"location",
"MutationObserver"
]
},
"dependencies": {
"html-template-tag": "^4.0.1",
"minstyle.io": "^2.0.2",
"webext-base-css": "^1.4.3",
"webext-options-sync": "^4.2.1"
},
"devDependencies": {
"@parcel/config-webextension": "~2.8.3",
"@parcel/transformer-sass": "~2.8.3",
"parcel": "~2.8.3",
"shx": "^0.3.4",
"standard": "*"
},
"webExt": {
"sourceDir": "distribution",
"run": {
"startUrl": [
"https://github.com/weslyg/more-boosty"
]
}
},
"@parcel/bundler-default-bug": "https://github.com/parcel-bundler/parcel/issues/8071",
"@parcel/bundler-default": {
"minBundles": 10000000
}
}