{
  "name": "ao3-api-nodejs",
  "version": "0.0.4",
  "description": "An unofficial AO3 API client for Node.js, written in TypeScript.",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist/**/*.js",
    "dist/**/*.d.ts",
    "LICENSE",
    "README.md"
  ],
  "scripts": {
    "build": "rm -rf dist && tsc",
    "build:types": "tsc --project tsconfig.types.json",
    "test": "vitest",
    "test:coverage": "vitest run --coverage",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "ao3",
    "archiveofourown",
    "api",
    "client",
    "scraper"
  ],
  "author": "qian-yu",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/Tubring25/ao3-api-node"
  },
  "bugs": {
    "url": "https://github.com/Tubring25/ao3-api-node/issues"
  },
  "homepage": "https://github.com/Tubring25/ao3-api-node#readme",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "dependencies": {
    "cheerio": "^1.0.0",
    "got": "^14.4.7",
    "got-scraping": "^4.1.1"
  },
  "devDependencies": {
    "@types/cheerio": "^1.0.0",
    "@types/node": "^22.15.30",
    "@vitest/coverage-v8": "^3.2.4",
    "typescript": "^5.8.3",
    "vitest": "^3.2.2"
  }
}
