Skip to content

Commit

Permalink
Update dependencies (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
fregante authored Jul 1, 2024
1 parent c2d4728 commit 5fcfac6
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 40 deletions.
71 changes: 40 additions & 31 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,18 +75,18 @@
},
"dependencies": {
"content-scripts-register-polyfill": "^4.0.2",
"webext-content-scripts": "^2.6.1",
"webext-detect-page": "^5.0.1",
"webext-events": "^3.0.0",
"webext-patterns": "^1.4.0",
"webext-content-scripts": "^2.7.0",
"webext-detect": "^5.0.2",
"webext-events": "^3.0.1",
"webext-patterns": "^1.5.0",
"webext-permissions": "^3.1.3",
"webext-polyfill-kinda": "^1.0.2"
},
"devDependencies": {
"@parcel/config-webextension": "^2.12.0",
"@sindresorhus/tsconfig": "^5.0.0",
"@sindresorhus/tsconfig": "^6.0.0",
"@types/chrome": "^0.0.268",
"@types/firefox-webext-browser": "^120.0.3",
"@types/firefox-webext-browser": "^120.0.4",
"@types/jest": "^29.5.12",
"expect-puppeteer": "^10.0.0",
"jest": "^29.7.0",
Expand All @@ -95,7 +95,7 @@
"npm-run-all": "^4.1.5",
"parcel": "^2.12.0",
"puppeteer": "^21.3.6",
"typescript": "^5.4.5",
"typescript": "^5.5.2",
"vitest": "^1.6.0",
"xo": "^0.58.0"
},
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ if (await isContentScriptRegistered('https://google.com/search')) {

- [webext-permission-toggle](https://github.com/fregante/webext-permission-toggle) - Browser-action context menu to request permission for the current tab.
- [webext-options-sync](https://github.com/fregante/webext-options-sync) - Helps you manage and autosave your extension's options.
- [webext-detect-page](https://github.com/fregante/webext-detect-page) - Detects where the current browser extension code is being run.
- [webext-detect](https://github.com/fregante/webext-detect) - Detects where the current browser extension code is being run.
- [Awesome-WebExtensions](https://github.com/fregante/Awesome-WebExtensions) - A curated list of awesome resources for WebExtensions development.
- [More…](https://github.com/fregante/webext-fun)

Expand Down
2 changes: 1 addition & 1 deletion source/active-tab.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {isScriptableUrl} from 'webext-content-scripts';
import {isBackground} from 'webext-detect-page';
import {isBackground} from 'webext-detect';
import {SimpleEventTarget} from './simple-event-target';

if (!isBackground()) {
Expand Down

0 comments on commit 5fcfac6

Please sign in to comment.