UNPKG

rtk-ready

Version:

Redux utilities package for a boilerplate setup with persisted state, authentication handling, API integration, and typed hooks, providing a structured and scalable state management solution for React applications.

77 lines (76 loc) 2.09 kB
{ "name": "rtk-ready", "version": "2.0.7", "description": "Redux utilities package for a boilerplate setup with persisted state, authentication handling, API integration, and typed hooks, providing a structured and scalable state management solution for React applications.", "keywords": [ "redux", "redux-toolkit", "state-management", "react", "redux-persist", "rtk", "api-integration", "react-hooks", "typed-redux", "redux-boilerplate", "authentication", "state-persistence", "rtk-ready" ], "license": "ISC", "repository": { "type": "git", "url": "https://github.com/jibon-roy/rtk-ready" }, "author": "Jibon Krishna Roy mailme.jibon@gmail.com", "type": "module", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsup", "test": "jest", "prepublishOnly": "npm run build", "lint": "eslint . .js,.ts,.tsx --fix", "format": "prettier --write .", "postinstall": "node ./dist/index.js" }, "bin": { "rtk-ready": "./dist/index.js" }, "files": [ "dist", "scripts", "src" ], "dependencies": { "@reduxjs/toolkit": "^2.5.0", "js-cookie": "^3.0.5", "react": "^19.0.0", "react-dom": "^19.0.0", "react-redux": "^9.2.0", "redux-persist": "^6.0.0" }, "devDependencies": { "@rollup/plugin-babel": "^6.0.4", "@rollup/plugin-commonjs": "^28.0.2", "@rollup/plugin-node-resolve": "^16.0.0", "@rollup/plugin-typescript": "^12.1.2", "@types/jest": "^29.5.14", "@types/js-cookie": "^3.0.6", "@types/react-redux": "^7.1.34", "@typescript-eslint/eslint-plugin": "^8.18.2", "@typescript-eslint/parser": "^8.18.2", "eslint": "^9.17.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.2.1", "eslint-plugin-react": "^7.37.3", "eslint-plugin-react-hooks": "^5.1.0", "jest": "^29.7.0", "prettier": "^3.4.2", "rollup": "^4.29.1", "ts-jest": "^29.2.5", "tsup": "^8.3.5", "typescript": "^5.7.2" } }