browser-ext/package.json

74 lines
2.0 KiB
JSON
Raw Permalink Normal View History

2024-04-25 18:16:30 +00:00
{
2024-04-25 21:05:58 +00:00
"name": "@movie-web/extension",
2024-04-25 20:49:46 +00:00
"displayName": "sudo-flix extension",
2024-08-19 19:14:52 +00:00
"version": "1.2.0",
2024-04-25 20:49:46 +00:00
"description": "Enhance your streaming experience with just one click",
"author": "sudo-flix",
2024-04-25 18:16:30 +00:00
"scripts": {
"dev": "plasmo dev",
"build": "plasmo build",
"build:firefox": "plasmo build --target=firefox-mv3",
"package": "plasmo package",
"package:firefox": "plasmo package --target=firefox-mv3",
"lint": "eslint --ext .tsx,.ts src",
"lint:fix": "eslint --fix --ext .tsx,.ts src",
"lint:report": "eslint --ext .tsx,.ts --output-file eslint_report.json --format json src",
"preinstall": "npx -y only-allow pnpm"
},
"dependencies": {
2024-08-15 14:43:10 +00:00
"@plasmohq/messaging": "^0.6.2",
"@plasmohq/storage": "^1.11.0",
2024-04-25 18:16:30 +00:00
"plasmo": "0.84.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/chrome": "0.0.251",
2024-08-15 14:43:10 +00:00
"@types/firefox-webext-browser": "^120.0.4",
2024-04-25 18:16:30 +00:00
"@types/node": "20.9.0",
"@types/react": "18.2.37",
"@types/react-dom": "18.2.15",
2024-08-15 14:43:10 +00:00
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
2024-04-25 18:16:30 +00:00
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
2024-08-15 14:43:10 +00:00
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
2024-04-25 18:16:30 +00:00
"prettier": "3.0.3",
"typescript": "5.2.2"
},
"manifest": {
"permissions": [
"declarativeNetRequest",
"activeTab",
"cookies"
],
"optional_host_permissions": [
"<all_urls>"
],
"browser_specific_settings": {
"gecko": {
"id": "{3fd86354-c73f-4395-9e26-2c5c984579bf}"
},
"gecko_android": {
"id": "{3fd86354-c73f-4395-9e26-2c5c984579bf}"
}
},
"web_accessible_resources": [
{
"resources": [
"assets/active.png",
"assets/inactive.png"
],
"matches": [
"<all_urls>"
]
}
]
}
}