UNPKG

leader-tab

Version:

An algorithm for selecting a leader from all the open tabs of a website.

44 lines 987 B
{ "name": "leader-tab", "version": "0.0.4", "description": "An algorithm for selecting a leader from all the open tabs of a website.", "license": "MIT", "author": "frectonz", "files": [ "dist" ], "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "keywords": [ "leader-election", "browser-tabs", "tab-coordination", "single-tab-leader", "multi-tab", "web", "coordination", "leader", "visibility", "inter-tab", "tab-leader" ], "devDependencies": { "@biomejs/biome": "1.9.4", "@changesets/cli": "^2.29.0", "tsup": "^8.4.0", "typescript": "^5.8.3", "vitest": "^3.1.1" }, "publishConfig": { "access": "public" }, "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts", "release": "pnpm run build && changeset publish", "typecheck": "tsc", "lint": "biome lint .", "format": "biome format . --write", "test": "vitest" } }