-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.25 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": "disable-umami",
"version": "0.2.0",
"description": "A WebExtension to disable Umami Analytics.",
"keywords": [
"WebExtension",
"JavaScript",
"Firefox"
],
"license": "MPL-2.0",
"author": "uiolee (https://github.com/uiolee)",
"scripts": {
"prebuild": "pnpm run clean",
"build": "pnpm run build:dist",
"build:dist": "parcel build src/manifest.json --no-cache --no-autoinstall --detailed-report --no-source-maps",
"build:ext": "web-ext build",
"clean": "rm -rf dist .web-ext .parcel-cache",
"dev": "web-ext run --devtools",
"lint": "pnpm run lint:ext",
"lint:es": "eslint src",
"lint:ext": "web-ext lint",
"sign": "web-ext sign",
"postversion": "node scripts/postversion.mjs",
"prewatch": "pnpm run clean",
"watch": "parcel watch src/manifest.json --watch-dir src --no-hmr"
},
"dependencies": {
"@picocss/pico": "^2.0.6"
},
"devDependencies": {
"@parcel/config-webextension": "^2.12.0",
"@parcel/optimizer-data-url": "^2.12.0",
"@parcel/transformer-inline-string": "^2.12.0",
"eslint": "^9.13.0",
"eslint-config-uiolee": "^0.2.0",
"execa": "^9.5.0",
"globals": "^15.11.0",
"parcel": "^2.12.0",
"prettier": "^3.3.3",
"web-ext": "^8.3.0"
}
}