{
  "name": "idle-task",
  "version": "4.3.1",
  "description": "Improve your website performance by executing JavaScript during a browser's idle periods🚀",
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "exports": {
    "development": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.development.cjs",
      "import": "./dist/index.development.mjs",
      "default": "./dist/index.development.js"
    },
    "production": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.cjs",
      "import": "./dist/index.mjs",
      "default": "./dist/index.js"
    }
  },
  "types": "dist/index.d.ts",
  "sideEffects": false,
  "files": [
    "dist"
  ],
  "scripts": {
    "test": "run-p test:*",
    "test:browser": "jest",
    "test:server": "jest --env=node",
    "test:check": "biome ci ./src",
    "check": "biome check ./src",
    "build": "tsup",
    "prepare": "husky install"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hiroki0525/idle-task.git"
  },
  "keywords": [
    "JavaScript",
    "TypeScript",
    "requestIdleCallback",
    "Performance",
    "Core Web Vitals"
  ],
  "author": "Hiroki Miyaji",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/hiroki0525/idle-task/issues"
  },
  "homepage": "https://github.com/hiroki0525/idle-task#readme",
  "devDependencies": {
    "@biomejs/biome": "^1.9.4",
    "@commitlint/cli": "19.6.1",
    "@commitlint/config-conventional": "19.6.0",
    "@semantic-release/changelog": "6.0.3",
    "@semantic-release/git": "10.0.1",
    "@types/jest": "29.5.14",
    "@types/node": "^20.17.10",
    "bundlemon": "^3.1.0",
    "husky": "9.1.7",
    "jest": "29.7.0",
    "jest-environment-jsdom": "^29.7.0",
    "npm-run-all2": "^7.0.2",
    "semantic-release": "24.2.0",
    "ts-jest": "29.2.5",
    "ts-loader": "9.5.1",
    "tslib": "^2.8.1",
    "tsup": "^8.3.5",
    "typescript": "5.7.2"
  },
  "release": {
    "plugins": [
      "@semantic-release/commit-analyzer",
      "@semantic-release/changelog",
      "@semantic-release/npm",
      "@semantic-release/github",
      "@semantic-release/git",
      "@semantic-release/release-notes-generator"
    ],
    "branches": [
      "main"
    ]
  },
  "bundlemon": {
    "baseDir": "./dist",
    "reportOutput": [
      "github"
    ],
    "files": [
      {
        "path": "index.cjs"
      },
      {
        "path": "index.js"
      }
    ]
  },
  "engines": {
    "node": ">=20"
  },
  "packageManager": "pnpm@9.15.2"
}
