-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.84 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.84 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
{
"name": "universal-extension",
"displayName": "TheIntroDB",
"version": "1.4.0",
"description": "A browser extension that adds skip buttons for intros, recaps, credits, and previews on almost any site!",
"author": "TheIntroDB",
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"build:chrome": "plasmo build --target=chrome-mv3",
"build:firefox": "plasmo build --target=firefox-mv3",
"package": "plasmo package",
"package:firefox": "plasmo package --target=firefox-mv3",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"i18next": "^26.0.6",
"i18next-browser-languagedetector": "^8.2.1",
"jiti": "1.21.0",
"plasmo": "0.90.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "^17.0.4",
"sharp": "^0.34.5"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@types/chrome": "0.0.258",
"@types/node": "20.11.5",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"autoprefixer": "^10.4.27",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"postcss": "^8.5.8",
"prettier": "3.2.4",
"tailwindcss": "^3.4.19",
"typescript": "5.3.3",
"typescript-eslint": "^8.54.0"
},
"manifest": {
"browser_specific_settings": {
"gecko": {
"id": "{b93a2d67-2e58-4beb-a792-e663b7c5c7aa}",
"strict_min_version": "109.0",
"data_collection_permissions": {
"required": [
"browsingActivity"
]
}
}
},
"host_permissions": [
"https://*/*"
],
"permissions": [
"storage",
"activeTab"
]
}
}