{
  "name": "idb-ts",
  "version": "3.15.0",
  "description": "Easy CRUD for indexed-db, written in TypeScript",
  "main": "lib/index.js",
  "module": "lib/index.esm.js",
  "types": "lib/index.d.ts",
  "type": "module",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "import": "./lib/index.esm.js",
      "require": "./lib/index.js"
    }
  },
  "scripts": {
    "prepare": "pnpm run build",
    "build": "rm -rf lib && pnpm run build:tsc && pnpm run build:rollup",
    "build:tsc": "tsc -p tsconfig.build.json",
    "build:rollup": "rollup -c",
    "lint": "eslint .",
    "lint:fix": "prettier --write . && eslint . --fix",
    "test": "pnpm test:feat && pnpm test:types",
    "test:feat": "pnpm run test:types && jest --runInBand --detectOpenHandles",
    "test:types": "tsc -p tsconfig.test.json --noEmit",
    "test:watch": "jest --watchAll --runInBand --detectOpenHandles",
    "test:coverage": "jest --coverage --runInBand --detectOpenHandles",
    "test:coverage:watch": "jest --coverage --watchAll --runInBand --detectOpenHandles",
    "test:performance": "npx tsx performance.ts",
    "docs:generate": "typedoc"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/maifeeulasad/idb-ts.git"
  },
  "keywords": [
    "idb",
    "ts",
    "indexed-db",
    "typescript",
    "database",
    "db",
    "indexeddb",
    "crud",
    "storage"
  ],
  "author": "Maifee Ul Asad <maifeeulasad@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/maifeeulasad/idb-ts/issues"
  },
  "files": [
    "lib"
  ],
  "homepage": "https://github.com/maifeeulasad/idb-ts#readme",
  "peerDependencies": {
    "reflect-metadata": "^0.2.2",
    "tslib": "^2.8.1"
  },
  "devDependencies": {
    "@eslint/js": "^9.31.0",
    "@rollup/plugin-typescript": "^12.3.0",
    "@types/jest": "^30.0.0",
    "@types/node": "^24.12.0",
    "@typescript-eslint/eslint-plugin": "^8.37.0",
    "@typescript-eslint/parser": "^8.37.0",
    "eslint": "^9.31.0",
    "fake-indexeddb": "^6.2.5",
    "globals": "^15.15.0",
    "jest": "^30.3.0",
    "jest-environment-jsdom": "^30.3.0",
    "prettier": "^3.8.3",
    "rollup": "^4.60.1",
    "ts-jest": "^29.4.9",
    "typedoc": "^0.28.19",
    "typescript": "^6.0.3"
  }
}