{
  "name": "@sovgut/state",
  "version": "2.2.0",
  "description": "Type-safe, synchronous state management for the browser with a unified API over localStorage, sessionStorage, cookies, and in-memory storage, plus a built-in observer for change events.",
  "type": "module",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Sovgut/state.git"
  },
  "homepage": "https://github.com/Sovgut/state#readme",
  "bugs": {
    "url": "https://github.com/Sovgut/state/issues"
  },
  "author": {
    "name": "Serhii Sovhut",
    "url": "https://github.com/Sovgut"
  },
  "keywords": [
    "state",
    "store",
    "state-management",
    "storage",
    "web-storage",
    "localstorage",
    "local-storage",
    "sessionstorage",
    "session-storage",
    "cookies",
    "cookie",
    "in-memory",
    "memory-storage",
    "observer",
    "pubsub",
    "event-emitter",
    "reactive",
    "type-safe",
    "typescript",
    "browser",
    "persistence",
    "cache",
    "react",
    "frontend"
  ],
  "license": "MIT",
  "scripts": {
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc -b",
    "build": "vite build",
    "lint": "biome lint ./src",
    "format": "biome format ./src --write",
    "check": "biome check --write ./src",
    "prepublishOnly": "npm run build",
    "deploy:npm": "npm publish"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.5.3",
    "@types/node": "^26.1.1",
    "@typescript/typescript6": "^6.0.2",
    "jsdom": "^29.1.1",
    "typescript": "^7.0.2",
    "vite": "^8.1.4",
    "vite-plugin-dts": "^5.0.3",
    "vitest": "^4.1.10"
  },
  "sideEffects": false,
  "engines": {
    "node": ">=20"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": ["dist"],
  "main": "./dist/main.js",
  "module": "./dist/main.js",
  "types": "./dist/main.d.ts",
  "exports": {
    ".": {
      "types": "./dist/main.d.ts",
      "import": "./dist/main.js",
      "default": "./dist/main.js"
    },
    "./package.json": "./package.json"
  }
}
