@powertoys/relay
Version:
Tab 2 tab communication on web applications
63 lines • 1.69 kB
JSON
{
"name": "@powertoys/relay",
"version": "1.3.0",
"description": "Tab 2 tab communication on web applications",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"author": "Boram Uyar",
"license": "MIT",
"type": "module",
"keywords": [
"cross-tab",
"communication",
"shared-worker",
"typescript",
"react"
],
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.13.10",
"@types/react": "^19.0.10",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^15.15.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"rollup": "^4.35.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-string": "^3.0.0",
"tslib": "^2.8.1",
"typedoc": "^0.27.9",
"typescript": "^5.8.2"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest --passWithNoTests",
"lint": "eslint src --ext .ts,.tsx",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"docs": "typedoc --out docs/api src/index.ts"
}
}