-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.07 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.07 KB
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
56
57
58
59
60
{
"name": "Plausible Shield",
"description": "Automatically shield your browser from Plausible tracking from your websites",
"private": true,
"version": "0.2.2",
"type": "module",
"scripts": {
"compile": "tsc",
"format": "eslint --fix */**.tsx */**.ts *.mjs && prettier . --write",
"lint": "eslint */**.tsx */**.ts *.mjs --report-unused-disable-directives --max-warnings 0 && prettier . --check && npm run build && web-ext lint -s plausible-shield.zip",
"dev": "vite",
"ff:android": "web-ext run -t firefox-android --firefox-apk org.mozilla.fenix --adb-device",
"test": "vitest run --coverage --typecheck",
"build": "npm run compile && vite build && web-ext build -a . -s dist --overwrite-dest --filename plausible-shield.zip"
},
"keywords": [
"browser-extension"
],
"author": "GoodAddon",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/8hobbies/plausible-shield/issues"
},
"homepage": "https://www.goodaddon.com/plausible-shield/",
"dependencies": {
"@8hobbies/utils": "4.2.0",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.1",
"@fontsource/roboto": "5.2.10",
"@mui/material": "9.0.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"validator": "13.15.26"
},
"devDependencies": {
"@8hobbies/eslint-conf-baseline": "7.0.0",
"@8hobbies/eslint-conf-react-baseline": "3.0.0",
"@8hobbies/vite-plugin-year": "1.0.2",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/chrome": "0.1.37",
"@types/jest": "30.0.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/validator": "13.15.10",
"@types/webextension-polyfill": "0.12.5",
"@vitejs/plugin-react": "6.0.1",
"@vitest/coverage-v8": "4.1.0",
"happy-dom": "20.9.0",
"prettier": "3.8.1",
"sass-embedded": "1.98.0",
"typescript": "5.9.3",
"typescript-eslint": "8.57.0",
"vite": "8.0.6",
"vite-plugin-web-extension": "4.5.0",
"vitest": "4.1.0",
"web-ext": "10.0.0"
}
}