UNPKG

react-containerized-state

Version:

Fast and minimal state container which can be used and shared across React or non-React components.

64 lines 1.53 kB
{ "name": "react-containerized-state", "version": "3.2.0", "description": "Fast and minimal state container which can be used and shared across React or non-React components.", "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "./dist", "./README.md", "./LICENSE" ], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "keywords": [ "react", "state", "state management", "fast", "minimal", "containerized" ], "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "repository": { "type": "git", "url": "git+https://github.com/mimshins/containerized-state.git" }, "bugs": { "url": "https://github.com/mimshins/containerized-state/issues" }, "author": { "name": "Mostafa Shamsitabar", "email": "mostafa.sh.coderino@gmail.com" }, "license": "MIT", "peerDependencies": { "react": ">=16.8", "react-dom": ">=16.8" }, "dependencies": { "use-sync-external-store": "^1.5.0", "containerized-state": "3.2.0" }, "devDependencies": { "@types/use-sync-external-store": "^1.5.0" }, "scripts": { "clear": "shx rm -rf dist", "test": "vitest run", "test:dev": "vitest", "prebuild": "pnpm run clear", "build": "tsup", "release": "pnpm publish . --tag latest --access public --no-git-checks" } }