@binclusive/cli 0.1.3 → 0.1.5
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/README.md +42 -2
- package/dist/bin.js +344 -157
- package/package.json +7 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@binclusive/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Binclusive accessibility CLI — run audits and view violation tickets from your terminal.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"type": "module",
|
|
@@ -24,16 +24,20 @@
|
|
|
24
24
|
"dev": "node dist/bin.js",
|
|
25
25
|
"dev:local": "B8E_KONTROL_URL=http://localhost:5000/graphql B8E_PASAPORT_URL=http://localhost:3000 node dist/bin.js",
|
|
26
26
|
"typecheck": "tsc --noEmit",
|
|
27
|
-
"captcha:probe": "tsx src/captcha/probe.ts",
|
|
28
27
|
"test": "vitest run",
|
|
29
28
|
"upload-sourcemaps": "./scripts/upload-sourcemaps.sh",
|
|
30
29
|
"prepublishOnly": "pnpm build"
|
|
31
30
|
},
|
|
32
31
|
"optionalDependencies": {
|
|
33
|
-
"playwright": "^1.50.0"
|
|
32
|
+
"playwright": "^1.50.0",
|
|
33
|
+
"playwright-extra": "^4.3.6",
|
|
34
|
+
"puppeteer-extra-plugin-stealth": "^2.11.2"
|
|
34
35
|
},
|
|
35
36
|
"devDependencies": {
|
|
36
37
|
"@b8e/audit-protocol": "workspace:^",
|
|
38
|
+
"@b8e/captcha": "workspace:^",
|
|
39
|
+
"@b8e/hands-machine": "workspace:^",
|
|
40
|
+
"@b8e/nvda-screen-reader": "workspace:^",
|
|
37
41
|
"@b8e/tea": "workspace:^",
|
|
38
42
|
"@b8e/tea-react": "workspace:^",
|
|
39
43
|
"@babel/core": "^7.24.0",
|