UNPKG

tauri-mw-store

Version:

Declarative multi-window state management for Tauri apps with React hooks, schema-driven persistence, and automatic synchronization.

70 lines (69 loc) 1.61 kB
{ "name": "tauri-mw-store", "version": "2.3.1", "description": "Declarative multi-window state management for Tauri apps with React hooks, schema-driven persistence, and automatic synchronization.", "keywords": [ "tauri", "react", "state-management", "multi-window", "hooks", "store", "persistence", "desktop", "electron-alternative", "typescript", "schema-driven", "cross-window", "sync", "declarative", "reactive", "automatic", "configuration-driven" ], "license": "MIT", "author": "huaguang <2475096613@qq.com>", "repository": { "type": "git", "url": "git+https://github.com/Huaguang-XinZhe/tauri-mw-store.git" }, "type": "module", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "publishConfig": { "access": "public" }, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } }, "files": [ "dist", "README.md", "LICENSE" ], "sideEffects": false, "peerDependencies": { "react": ">=18", "@tauri-apps/api": ">=1.5.0", "@tauri-apps/plugin-store": "^2.3.0" }, "scripts": { "build": "tsup", "clean": "rimraf dist", "release": "node release.js", "release:patch": "node release.js patch", "release:minor": "node release.js minor", "release:major": "node release.js major", "prepublishOnly": "bun run clean && bun run build" }, "devDependencies": { "@types/react": "^19.1.9", "rimraf": "^6.0.1", "tsup": "^8.5.0", "typescript": "^5.9.2" } }