UNPKG

react-use-anywhere

Version:

Use React hooks anywhere in your codebase - in services, utilities, and business logic. Router-agnostic, hook-agnostic, and works with any React hooks (auth, navigation, state, custom hooks, etc.).

109 lines (108 loc) 2.97 kB
{ "name": "react-use-anywhere", "version": "1.2.0", "description": "Use React hooks anywhere in your codebase - in services, utilities, and business logic. Router-agnostic, hook-agnostic, and works with any React hooks (auth, navigation, state, custom hooks, etc.).", "author": "akhshyganesh <akhshy.balakannan@gmail.com>", "license": "MIT", "type": "module", "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "files": [ "dist", "README.md", "LICENSE", "CHANGELOG.md" ], "keywords": [ "react", "hooks", "use-anywhere", "dependency-injection", "service-layer", "business-logic", "typescript", "hook-injection", "modular", "router-agnostic", "hook-agnostic", "react-router", "tanstack-router", "nextjs", "navigation", "authentication", "state-management", "utility", "production-ready" ], "repository": { "type": "git", "url": "https://github.com/akhshyganesh/react-use-anywhere.git" }, "bugs": { "url": "https://github.com/akhshyganesh/react-use-anywhere/issues" }, "homepage": "https://github.com/akhshyganesh/react-use-anywhere#readme", "scripts": { "build": "vite build --config vite.lib.config.ts", "lint": "eslint . --ext .ts,.tsx", "lint:fix": "eslint . --ext .ts,.tsx --fix", "format": "prettier --write .", "format:check": "prettier --check .", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "type-check": "tsc --noEmit", "prepublishOnly": "npm run type-check && npm run lint && npm run test && npm run build" }, "peerDependencies": { "react": ">=16.8.0 <20.0.0", "react-dom": ">=16.8.0 <20.0.0" }, "devDependencies": { "@testing-library/jest-dom": "^6.6.3", "@testing-library/react": "^16.3.0", "@types/jest": "^29.5.12", "@types/react": "^19.2.8", "@types/react-dom": "^19.2.3", "@typescript-eslint/eslint-plugin": "^6.21.0", "@typescript-eslint/parser": "^6.21.0", "@vitejs/plugin-react": "^4.2.1", "eslint": "^8.55.0", "eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-refresh": "^0.4.5", "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "prettier": "^3.0.0", "react": "^18.2.0", "react-dom": "^18.2.0", "ts-jest": "^29.4.0", "typescript": "^5.2.2", "vite": "^7.3.1", "vite-plugin-dts": "^4.5.4" }, "jest": { "preset": "ts-jest", "testEnvironment": "jsdom", "setupFilesAfterEnv": [ "<rootDir>/test/setup.ts" ], "testMatch": [ "<rootDir>/test/**/*.{test,spec}.{ts,tsx}" ], "moduleNameMapper": { "^@/(.*)$": "<rootDir>/lib/$1" } }, "engines": { "node": ">=16.0.0", "npm": ">=8.0.0" } }