{
  "name": "narou",
  "version": "2.0.1",
  "description": "Narou API Wrapper",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/deflis/node-narou.git"
  },
  "license": "MIT",
  "author": "deflis <deflis@gmail.com>",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "node": {
        "import": "./dist/index.mjs",
        "require": "./dist/index.cjs"
      },
      "browser": {
        "import": "./dist/index.browser.mjs",
        "require": "./dist/index.browser.cjs"
      },
      "default": "./dist/index.mjs"
    },
    "./browser": {
      "types": "./dist/index.browser.d.mts",
      "import": "./dist/index.browser.mjs",
      "require": "./dist/index.browser.cjs",
      "default": "./dist/index.browser.mjs"
    }
  },
  "main": "dist/index.cjs",
  "types": "dist/index.d.mts",
  "files": [
    "dist",
    "src",
    "package.json",
    "pnpm-lock.yaml",
    "README.md"
  ],
  "devDependencies": {
    "@swc/core": "^1.15.3",
    "@types/node": "^24.10.2",
    "@typescript-eslint/eslint-plugin": "^8.49.0",
    "@typescript-eslint/parser": "^8.49.0",
    "@vitest/coverage-v8": "^3.2.4",
    "date-fns": "^4.1.0",
    "eslint": "^9.39.1",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-prettier": "^5.5.4",
    "globals": "^16.5.0",
    "msw": "^2.12.4",
    "prettier": "^3.7.4",
    "run-z": "^2.1.0",
    "tsdown": "^0.17.2",
    "typescript": "^5.9.3",
    "vitest": "^3.2.4"
  },
  "engines": {
    "node": ">=16.0.0",
    "pnpm": ">=8"
  },
  "module": "dist/index.js",
  "scripts": {
    "build": "run-z check build:tsc",
    "build:tsc": "tsdown",
    "check": "run-z check:lint,check:build,test",
    "check:lint": "eslint src/** test/**",
    "check:build": "tsc --noEmit",
    "format": "eslint --fix src/** test/**",
    "test": "vitest run",
    "docs": "run-z docs:clean docs:typedoc docs:json docs:llms",
    "docs:clean": "pnpm dlx rimraf docs",
    "docs:typedoc": "pnpm dlx typedoc --out ./docs src/index.ts",
    "docs:json": "pnpm dlx typedoc --json docs/api.json src/index.ts",
    "docs:llms": "node scripts/generate-llms-txt.js"
  }
}