UNPKG

redux-toolkit-state

Version:

🚀 A powerful & lightweight React hook library that simplifies Redux state management with a familiar useState-like API. Built on Redux Toolkit for optimal performance.

91 lines (90 loc) • 2.08 kB
{ "name": "redux-toolkit-state", "version": "1.2.8", "description": "🚀 A powerful & lightweight React hook library that simplifies Redux state management with a familiar useState-like API. Built on Redux Toolkit for optimal performance.", "homepage": "https://use-redux-state-examples-qlq9.vercel.app", "main": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.js", "types": "./dist/index.d.ts" }, "./package.json": "./package.json" }, "files": [ "dist/", "README.md", "LICENSE" ], "scripts": { "build": "tsc", "test": "echo \"Error: no test specified\" && exit 1", "prebuild": "npm run clean", "clean": "rm -rf dist", "dev": "tsc --watch" }, "keywords": [ "react", "redux", "redux-toolkit", "hook", "useState", "state-management", "global-state", "typescript", "react-hooks", "state", "store", "reducer", "middleware", "immutable", "predictable", "devtools" ], "author": { "name": "Rajkumar Rathod", "email": "rajkumarrathod414@gmail.com", "url": "https://github.com/rajkumar4041" }, "repository": { "type": "git", "url": "https://github.com/rajkumar4041/use-redux-state.git" }, "license": "MIT", "dependencies": { "@reduxjs/toolkit": "^2.8.2", "react": "^19.1.0", "react-redux": "^9.2.0" }, "devDependencies": { "@types/react": "^19.0.0", "typescript": "^5.0.0", "vite": "^7.0.6" }, "prettier": { "semi": true, "trailingComma": "es5", "singleQuote": true, "printWidth": 80, "tabWidth": 2 }, "eslintConfig": { "extends": [ "@typescript-eslint/recommended", "plugin:react/recommended", "plugin:react-hooks/recommended", "prettier" ], "parser": "@typescript-eslint/parser", "plugins": [ "@typescript-eslint", "react", "react-hooks" ], "rules": { "react/react-in-jsx-scope": "off" } } }