{
  "name": "@wildneo/local-stash",
  "version": "1.0.1",
  "description": "Type-safe localStorage wrapper for TypeScript with versioning, data migration, and change subscriptions",
  "type": "module",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "keywords": [
    "localstorage",
    "sessionstorage",
    "storage",
    "typescript",
    "type-safe",
    "typed-storage",
    "persist",
    "versioning",
    "migration"
  ],
  "author": "Roman Oskolkov <wild_neo@mail.ru>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/wildneo/local-stash.git",
    "directory": "packages/local-stash"
  },
  "homepage": "https://github.com/wildneo/local-stash/tree/main/packages/local-stash#readme",
  "bugs": {
    "url": "https://github.com/wildneo/local-stash/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      }
    },
    "./package.json": "./package.json"
  },
  "sideEffects": false,
  "files": [
    "dist"
  ],
  "dependencies": {
    "@wildneo/emitter": "1.0.1"
  },
  "scripts": {
    "build": "pnpm clean && tsc",
    "clean": "rm -rf ./dist"
  }
}