-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.72 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.72 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "media-bias-fact-check",
"displayName": "Media Bias Fact Check",
"description": "Show Media Bias / Fact Check ratings for Facebook and news websites as you browse",
"version": "4.2.0",
"author": "Mike Crowe <drmikecrowe@gmail.com>",
"browserslist": [
"defaults and supports es6-module"
],
"bugs": "https://github.com/drmikecrowe/mbfcext/issues",
"scripts": {
"dev": "plasmo dev",
"dev:chrome": "plasmo dev --target=chrome-mv3",
"dev:firefox": "plasmo dev --target=firefox-mv3",
"build": "plasmo build",
"build:chrome": "plasmo build --target=chrome-mv3",
"build:firefox": "plasmo build --target=firefox-mv3 && pnpm run lint:firefox",
"build:all": "pnpm run build:chrome && pnpm run build:firefox",
"lint:firefox": "pnpm exec addons-linter build/firefox-mv3-prod/",
"package:chrome": "pnpm run build:chrome && plasmo package --target=chrome-mv3",
"package:firefox": "pnpm run build:firefox && plasmo package --target=firefox-mv3",
"package:all": "pnpm run build:all && pnpm run package:chrome && pnpm run package:firefox",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@analytics-debugger/ga4mp": "0.0.8",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^3.0.0",
"@plasmohq/messaging": "^0.7.2",
"@plasmohq/storage": "^1.15.0",
"@types/webextension-polyfill": "^0.12.5",
"debug": "^4.4.3",
"effective-domain-name-parser": "^0.0.11",
"htm": "^3.1.1",
"lodash": "^4.17.23",
"neverthrow": "^6.2.2",
"plasmo": "^0.90.5",
"react": "18.3.1",
"react-dom": "18.3.1",
"vhtml": "^2.2.0",
"webextension-polyfill": "^0.12.0",
"whatwg-fetch": "^3.6.20"
},
"devDependencies": {
"@tailwindcss/forms": "0.5.11",
"@tailwindcss/typography": "^0.5.19",
"@testing-library/jest-dom": "^6.9.1",
"@types/chrome": "0.1.37",
"@types/debug": "^4.1.12",
"@types/effective-domain-name-parser": "^0.0.2",
"@types/eslint": "^8.56.12",
"@types/eslint-config-prettier": "^6.11.3",
"@types/lodash": "^4.17.24",
"@types/node": "18.19.130",
"@types/prettier": "2.7.3",
"@types/react": "18.3.28",
"@types/react-dom": "18.3.7",
"@types/vhtml": "^2.2.9",
"@types/whatwg-fetch": "^0.0.33",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"addons-linter": "^9.9.1",
"autoprefixer": "^10.4.24",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-prettier": "0.0.0-empty",
"husky": "^8.0.3",
"jsdom": "^28.1.0",
"postcss": "^8.5.6",
"prettier": "3.8.1",
"tailwindcss": "^3.4.19",
"typescript": "5.9.3",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.30.1",
"engines": {
"node": ">=24"
},
"homepage": "https://drmikecrowe.github.io/mbfcext/",
"license": "MIT",
"repository": "drmikecrowe/mbfcext",
"manifest": {
"web_accessible_resources": [
{
"resources": [
"assets/*",
"src/background/icons/*"
],
"matches": [
"<all_urls>"
]
}
],
"host_permissions": [
"*://facebook.com/*",
"*://*.facebook.com/*"
],
"permissions": [
"alarms",
"storage",
"tabs"
],
"browser_specific_settings": {
"gecko": {
"id": "media-bias-fact-check@drmikecrowe-mbfcext",
"strict_min_version": "142.0",
"data_collection_permissions": {
"required": [
"none"
],
"optional": [
"technicalAndInteraction",
"websiteActivity"
]
}
}
}
}
}