-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
100 lines (100 loc) · 2.77 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
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
{
"name": "media-bias-fact-check",
"displayName": "Media Bias Fact Check",
"description": "Show Media Bias / Fact Check ratings for Facebook, Twitter and news websites as you browse",
"version": "4.0.2",
"author": "Mike Crowe <[email protected]>",
"browserslist": [
"defaults and supports es6-module"
],
"bugs": "https://github.com/drmikecrowe/mbfcext/issues",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"package": "plasmo package"
},
"dependencies": {
"@analytics-debugger/ga4mp": "^0.0.8",
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@plasmohq/messaging": "^0.6.2",
"@plasmohq/storage": "^1.9.3",
"@types/webextension-polyfill": "^0.10.7",
"debug": "^4.3.4",
"effective-domain-name-parser": "^0.0.11",
"htm": "^3.1.1",
"lodash": "^4.17.21",
"neverthrow": "^6.1.0",
"plasmo": "^0.84.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"vhtml": "^2.2.0",
"webextension-polyfill": "^0.10.0",
"whatwg-fetch": "^3.6.20"
},
"devDependencies": {
"@tailwindcss/forms": "0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@types/chrome": "0.0.260",
"@types/debug": "^4.1.12",
"@types/effective-domain-name-parser": "^0.0.2",
"@types/eslint": "^8.56.2",
"@types/eslint-config-prettier": "^6.11.3",
"@types/lodash": "^4.14.202",
"@types/node": "18.19.17",
"@types/prettier": "2.7.3",
"@types/react": "18.2.57",
"@types/react-dom": "18.2.19",
"@types/vhtml": "^2.2.9",
"@types/whatwg-fetch": "^0.0.33",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-react": "^7.33.2",
"eslint-prettier": "0.0.0-empty",
"husky": "^8.0.3",
"postcss": "^8.4.35",
"prettier": "3.2.5",
"tailwindcss": "^3.4.1",
"typescript": "5.3.3"
},
"engines": {
"node": ">=20"
},
"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/*",
"*://twitter.com/*",
"*://*.twitter.com/*"
],
"permissions": [
"alarms",
"storage",
"tabs"
],
"browser_specific_settings": {
"gecko": {
"id": "media-bias-fact-check@drmikecrowe-mbfcext",
"strict_min_version": "104.0"
}
}
}
}