1.9.25 shipped the unregistered app-hanzo client_id, so the PKCE token exchange failed invalid_client — login has been dead since v1.8.0. The canonical registered client is hanzo-browser (universe IAM init_data; redirectUris include https://hanzo.ai/callback). Contracts pinning the registered client land in shared-config + cross-browser-parity tests.
41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
JSON
{
|
|
"name": "@hanzo/browser-extension",
|
|
"version": "1.9.26",
|
|
"description": "Hanzo AI Browser Extension",
|
|
"main": "dist/background.js",
|
|
"scripts": {
|
|
"build": "node src/build.js",
|
|
"watch": "node src/build.js --watch",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:e2e": "playwright test --config=e2e/playwright.config.ts",
|
|
"check:bundle-budget": "node scripts/check-bundle-budgets.mjs"
|
|
},
|
|
"dependencies": {
|
|
"@supabase/supabase-js": "^2.50.3",
|
|
"axios": "^1.10.0",
|
|
"chalk": "^4.1.2",
|
|
"commander": "^11.1.0",
|
|
"webextension-polyfill": "0.12.0",
|
|
"ws": "^8.18.3"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.52.0",
|
|
"@types/chrome": "^0.0.270",
|
|
"@types/firefox-webext-browser": "^120.0.0",
|
|
"@types/jsdom": "^21.1.7",
|
|
"@types/ws": "^8.18.1",
|
|
"esbuild": "^0.25.8",
|
|
"jsdom": "^26.1.0",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"typescript": "^5.8.3",
|
|
"vitest": "^0.34.6",
|
|
"ws": "^8.18.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"license": "MIT"
|
|
}
|