@axe-core/watcher 4.3.0-next.76c3b4d9 → 4.3.0-next.7e588e2a
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/utils/sync-fetch-worker.mjs +65 -1
- package/dist/utils/sync-fetch.d.ts +32 -0
- package/dist/utils/sync-fetch.js +29 -11
- package/dist/utils/sync-fetch.js.map +1 -1
- package/extension/background.js +1 -0
- package/extension/background.js.LICENSE.txt +1 -0
- package/extension/content.js +1 -1
- package/extension/manifest.json +4 -1
- package/package.json +2 -5
package/extension/manifest.json
CHANGED
|
@@ -4,7 +4,10 @@
|
|
|
4
4
|
"description": "Codeless accessibility testing",
|
|
5
5
|
"manifest_version": 3,
|
|
6
6
|
"homepage_url": "https://deque.com",
|
|
7
|
-
"permissions": ["storage", "unlimitedStorage"],
|
|
7
|
+
"permissions": ["storage", "unlimitedStorage", "scripting"],
|
|
8
|
+
"background": {
|
|
9
|
+
"service_worker": "background.js"
|
|
10
|
+
},
|
|
8
11
|
"content_scripts": [
|
|
9
12
|
{
|
|
10
13
|
"matches": ["<all_urls>"],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axe-core/watcher",
|
|
3
|
-
"version": "4.3.0-next.
|
|
3
|
+
"version": "4.3.0-next.7e588e2a",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"exports": {
|
|
@@ -143,8 +143,7 @@
|
|
|
143
143
|
"@types/express": "^5.0.6",
|
|
144
144
|
"@types/mocha": "^10.0.0",
|
|
145
145
|
"@types/morgan": "^1.9.3",
|
|
146
|
-
"@types/node": "22.19.
|
|
147
|
-
"@types/proxyquire": "^1.3.28",
|
|
146
|
+
"@types/node": "22.19.19",
|
|
148
147
|
"@types/react": "19",
|
|
149
148
|
"@types/react-dom": "19",
|
|
150
149
|
"@types/selenium-webdriver": "^4.1.15",
|
|
@@ -163,11 +162,9 @@
|
|
|
163
162
|
"morgan": "^1.10.0",
|
|
164
163
|
"nyc": "^18.0.0",
|
|
165
164
|
"playwright-core": "^1.45.0",
|
|
166
|
-
"proxyquire": "^2.1.3",
|
|
167
165
|
"puppeteer": "^24.2.0",
|
|
168
166
|
"react": "^19.1.0",
|
|
169
167
|
"react-dom": "^19.1.0",
|
|
170
|
-
"rimraf": "^6.1.2",
|
|
171
168
|
"selenium-webdriver": "^4.11.1",
|
|
172
169
|
"sinon": "^22.0.0",
|
|
173
170
|
"ts-loader": "^9.5.2",
|