statekit-lite
Version:
Minimal proxy-based global state manager for React with nested access, persist, watch, devtools, and realtime sync via plugins.
80 lines (79 loc) • 2.16 kB
JSON
{
"name": "statekit-lite",
"version": "1.3.1",
"author": "stalk94",
"homepage": "https://statekit-lite-production.up.railway.app/",
"repository": {
"type": "git",
"url": "git+https://github.com/stalk94/statekit-lite.git"
},
"description": "Minimal proxy-based global state manager for React with nested access, persist, watch, devtools, and realtime sync via plugins.",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"sideEffects": false,
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format esm --dts --no-sourcemap",
"start": "node index.js",
"dev": "vite",
"build:demo": "vite build",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"react",
"state",
"store",
"proxy",
"reactive",
"reactivity",
"state management",
"redux-devtools",
"persist",
"watch",
"immer",
"lightweight",
"hook",
"observable",
"redux alternative",
"sse",
"websocket",
"sync",
"supabase",
"realtime",
"supabase plugin",
"statekit",
"statekit-lite"
],
"devDependencies": {
"@testing-library/react": "^16.3.0",
"@types/react": "^19.1.5",
"@vitejs/plugin-react": "^4.5.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"jsdom": "^26.1.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^3.1.4",
"@types/express": "^5.0.2"
},
"peerDependencies": {
"react": ">=18.1.0 <20.0.0 || ^19.0.0",
"react-dom": ">=18.1.0 <20.0.0 || ^19.0.0"
},
"dependencies": {
"@supabase/supabase-js": "^2.50.0",
"immer": "^10.1.1"
}
}