{
  "name": "zen-fs-config",
  "version": "0.5.24",
  "description": "Distributed config management library built on ZenFS, zen-fs-cache, and zen-fs-sync",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "browser": "dist/zen-fs-config.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "README.zh-CN.md",
    "DESIGN.md"
  ],
  "scripts": {
    "build": "tsup",
    "build:npm": "tsup --format cjs,esm --dts",
    "build:browser": "tsup --format iife --global-name ZenFSConfig --platform browser --no-external /./ --out-extension .js=.browser.js",
    "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
    "clean": "rm -rf dist",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "prepublishOnly": "npm run clean && npm run build"
  },
  "keywords": [
    "zenfs",
    "config",
    "distributed",
    "sync",
    "filesystem",
    "configuration-management",
    "indexeddb",
    "offline-first"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/weijia/zen-fs-config.git"
  },
  "peerDependencies": {
    "@zenfs/core": ">=2.3.0",
    "@zenfs/dom": ">=1.0.0",
    "zen-fs-cache": ">=1.0.0",
    "zen-fs-sync": ">=0.4.7"
  },
  "dependencies": {
    "@richard432/localstorage-logger": "^0.1.0"
  },
  "peerDependenciesMeta": {
    "@zenfs/dom": {
      "optional": true
    },
    "zen-fs-cache": {
      "optional": true
    }
  },
  "devDependencies": {
    "@zenfs/core": "^2.5.7",
    "@zenfs/dom": "^1.0.0",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3",
    "vitest": "^1.6.1",
    "zen-fs-cache": "^1.0.1",
    "zen-fs-sync": "^0.4.9"
  }
}
