UNPKG

@clerk/chrome-extension

Version:

Clerk SDK for Chrome extensions

71 lines 1.89 kB
{ "name": "@clerk/chrome-extension", "version": "2.2.23", "description": "Clerk SDK for Chrome extensions", "keywords": [ "auth", "authentication", "passwordless", "session", "jwt", "chrome", "extension" ], "homepage": "https://clerk.com/", "bugs": { "url": "https://github.com/clerk/javascript/issues" }, "repository": { "type": "git", "url": "git+https://github.com/clerk/javascript.git", "directory": "packages/chrome-extension" }, "license": "MIT", "sideEffects": false, "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", "types": "./dist/types/index.d.ts", "files": [ "background", "dist", "internal", "react" ], "dependencies": { "webextension-polyfill": "^0.10.0", "@clerk/clerk-js": "^5.58.1", "@clerk/clerk-react": "^5.25.5", "@clerk/shared": "^3.2.3" }, "devDependencies": { "@types/chrome": "*", "@types/webextension-polyfill": "^0.10.7", "type-fest": "^4.8.3" }, "peerDependencies": { "react": "^18.0.0 || ^19.0.0 || ^19.0.0-0", "react-dom": "^18.0.0 || ^19.0.0 || ^19.0.0-0" }, "engines": { "node": ">=18.17.0" }, "publishConfig": { "access": "public" }, "scripts": { "build": "tsup", "postbuild": "node ../../scripts/search-for-rhc.mjs directory dist", "build:declarations": "tsc -p tsconfig.declarations.json", "clean": "rimraf ./dist", "dev": "tsup --watch", "dev:publish": "pnpm dev -- --env.publish", "lint": "eslint src", "lint:attw": "attw --pack . --profile node16", "lint:publint": "publint", "publish:local": "pnpm yalc push --replace --sig", "test": "jest", "test:cache:clear": "jest --clearCache --useStderr", "test:ci": "jest --maxWorkers=70%", "test:coverage": "jest --collectCoverage && open coverage/lcov-report/index.html" } }