pinia-react
Version:
Intuitive, type safe and flexible Store for React
61 lines • 1.41 kB
JSON
{
"name": "pinia-react",
"version": "2.0.0",
"description": "Intuitive, type safe and flexible Store for React",
"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.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"homepage": "https://github.com/savageKarl/pinia-react#readme",
"bugs": {
"url": "https://github.com/savageKarl/pinia-react/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/savageKarl/pinia-react.git"
},
"author": "savageKarl <shan.revolt@gmail.com>",
"private": false,
"publishConfig": {
"access": "public"
},
"keywords": [
"react",
"pinia-react",
"react-pinia",
"react-store",
"redux",
"zustand",
"store",
"pinia",
"vue",
"state-management"
],
"license": "MIT",
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"immer": "^10.2.0"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"playground-react": "vite playground/react",
"playground-nextjs": "pnpm next dev ./playground/nextjs",
"test": "vitest",
"test-dts": "tsc -p ./test-dts/tsconfig.json"
}
}