{
  "version": "0.2.0",
  "name": "bgg-ts-client",
  "description": "Fully typed TypeScript client for the BoardGameGeek XMLv2 API with error handling and pagination support",
  "author": "krzysztof-fijolek",
  "license": "MIT",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/esm/index.d.ts",
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=16"
  },
  "homepage": "https://github.com/krzysztof-fijolek/bgg-ts-client#readme",
  "bugs": {
    "url": "https://github.com/krzysztof-fijolek/bgg-ts-client/issues"
  },
  "repository": {
    "url": "git+https://github.com/krzysztof-fijolek/bgg-ts-client.git",
    "type": "git"
  },
  "keywords": [
    "boardgamegeek",
    "bgg",
    "board-games",
    "boardgame",
    "bgg-api",
    "xmlapi2",
    "api-client",
    "typescript",
    "tabletop"
  ],
  "scripts": {
    "start": "echo TODO!",
    "build": "yarn run build:ts",
    "build:ts": "rm -r -f dist && mkdir dist && yarn run build:ts:cjs && yarn run build:ts:esm && yarn run build:reflection && (sleep 5 && yarn run build:ts:post)",
    "build:ts:cjs": "rm -r -f cjs && tsc -p tsconfig.cjs.json --outdir cjs",
    "build:ts:esm": "rm -r -f esm && tsc -p tsconfig.esm.json --outdir esm",
    "build:ts:post": "cp -r cjs dist && cp -r esm dist && rm -r -f cjs && rm -r -f esm",
    "build:reflection": "npx ts-node test/unit/utils/reflection/ReflectionRunner.ts",
    "test": "jest --verbose",
    "lint": "echo TODO!",
    "prepare": "yarn run build:ts",
    "tsc:watch": "tsc -w",
    "semantic-release": "semantic-release"
  },
  "husky": {
    "hooks": {
      "pre-commit": "yarn test"
    }
  },
  "prettier": {
    "printWidth": 80,
    "semi": true,
    "singleQuote": true,
    "trailingComma": "es5"
  },
  "devDependencies": {
    "@semantic-release/commit-analyzer": "^8.0.1",
    "@semantic-release/git": "^9.0.0",
    "@semantic-release/github": "^7.2.0",
    "@semantic-release/npm": "^7.0.10",
    "@semantic-release/release-notes-generator": "^9.0.2",
    "@size-limit/preset-small-lib": "^4.10.0",
    "@types/jest": "^27.0.3",
    "husky": "^5.1.3",
    "jest": "^27.3.1",
    "semantic-release": "^17.4.2",
    "ts-jest": "^27.0.7",
    "typescript": "^4.2.3"
  },
  "dependencies": {
    "fast-xml-parser": "^3.18.0",
    "isomorphic-unfetch": "^3.1.0",
    "jackson-js": "^1.1.0"
  }
}
