{
  "name": "@firesystem/indexeddb",
  "version": "1.3.5",
  "description": "IndexedDB implementation of Virtual File System",
  "type": "module",
  "main": "./dist/src/index.cjs",
  "module": "./dist/src/index.js",
  "types": "./dist/src/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/src/index.d.ts",
      "import": "./dist/src/index.js",
      "require": "./dist/src/index.cjs"
    },
    "./provider": {
      "types": "./dist/provider.d.ts",
      "import": "./dist/provider.js",
      "require": "./dist/provider.cjs"
    }
  },
  "files": [
    "dist",
    "src",
    "provider.ts",
    "README.md"
  ],
  "keywords": [
    "vfs",
    "indexeddb",
    "virtual-file-system",
    "browser-storage"
  ],
  "author": "Anderson D. Rosa",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@firesystem/core": "1.1.1"
  },
  "devDependencies": {
    "@workspace-fs/core": "^1.0.8",
    "@types/node": "^20.10.5",
    "eslint": "^8.57.1",
    "fake-indexeddb": "^6.0.0",
    "tsup": "^8.0.1",
    "typescript": "^5.3.3",
    "vitest": "^1.1.0",
    "@firesystem/test-suite": "0.1.0"
  },
  "tsup": {
    "entry": [
      "src/index.ts",
      "provider.ts"
    ],
    "format": [
      "cjs",
      "esm"
    ],
    "dts": true,
    "sourcemap": true,
    "clean": true,
    "tsconfig": "tsconfig.build.json"
  },
  "peerDependencies": {
    "@workspace-fs/core": "^1.0.8"
  },
  "peerDependenciesMeta": {
    "@workspace-fs/core": {
      "optional": true
    }
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest --run",
    "test:watch": "vitest",
    "lint": "eslint src",
    "typecheck": "tsc --noEmit -p tsconfig.typecheck.json"
  }
}