{
  "name": "biketag",
  "version": "3.4.0",
  "description": "The Javascript client API for BikeTag Games",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist/**/*",
    "package.json",
    "LICENSE.md",
    "readme.md",
    "documentation.md",
    "code_of_conduct.md"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/keneucker/biketag-api.git"
  },
  "author": "Ken Eucker",
  "license": "AGPL-3.0-or-later",
  "bugs": {
    "url": "https://github.com/keneucker/biketag-api/issues"
  },
  "engines": {
    "node": ">=18"
  },
  "funding": {
    "type": "patreon",
    "url": "https://www.patreon.com/biketag"
  },
  "homepage": "https://keneucker.github.io/biketag-api/",
  "scripts": {
    "dev": "npm run dev:node",
    "dev:build": "npm run build && npm run dev",
    "dev:node": "node examples/node/index.js",
    "dev:testnode": "node examples/node/test.js",
    "dev:upnode": "node examples/node/update.js",
    "dev:test": "jest examples/node/index.test.ts",
    "dev:browser": "npm-run-all --parallel watch serve",
    "dev:both": "npm-run-all --parallel dev:node dev:browser",
    "serve": "npx @11ty/eleventy --serve",
    "serve:prod": "npx @11ty/eleventy --serve --port=80",
    "start": "npm run serve:prod",
    "test": "jest --verbose",
    "test:dev": "jest --silent=false",
    "test:ci": "jest --ci --coverage --maxWorkers=2",
    "build": "vite build",
    "build:prod": "npx tsc && vite build",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist _site test/src/**/*.js test/src/**/*.d.ts",
    "prepare": "husky install",
    "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
    "format:check": "prettier . --check ",
    "lint": "prettier . --write && eslint . --fix",
    "lint:check": "eslint . && prettier . --check",
    "lint:release": "npm run format:check && npm run lint:check && npm run typecheck && echo '🤖 !linter ✅ success! 🤖'",
    "lint:staged": "npx --no-install lint-staged",
    "commit": "cz",
    "convert": "tsoa spec-and-routes"
  },
  "dependencies": {
    "@sanity/client": "2.25.1-feature-image-file-input-refactor.150",
    "axios": "^0.21.1",
    "axios-cache-adapter": "^2.7.3",
    "form-data": "^4.0.0",
    "imgur": "^2.4.1",
    "lodash": "^4.17.21",
    "tinycache": "^1.1.2",
    "util": "^0.12.4"
  },
  "devDependencies": {
    "@11ty/eleventy": "^2.0.0",
    "@commitlint/cli": "^19.7.1",
    "@commitlint/config-conventional": "^16.0.0",
    "@types/jest": "^29.5.1",
    "@types/mock-fs": "^4.13.1",
    "@typescript-eslint/eslint-plugin": "^5.10.2",
    "@typescript-eslint/parser": "^5.10.2",
    "axios-mock-adapter": "^1.20.0",
    "commitizen": "^4.2.4",
    "cz-conventional-changelog": "^3.3.0",
    "dotenv": "^15.0.0",
    "eslint": "^8.8.0",
    "eslint-config-prettier": "^8.3.0",
    "husky": "^7.0.4",
    "jest": "^29.5.0",
    "lint-staged": "^12.3.2",
    "mock-fs": "^5.1.2",
    "msw": "^2.7.3",
    "prettier": "^2.5.1",
    "rollup-plugin-polyfill-node": "^0.13.0",
    "semantic-release": "^24.2.3",
    "ts-jest": "^29.1.0",
    "ts-loader": "^9.2.6",
    "tsoa": "^3.14.1",
    "typescript": "^4.5.5",
    "vite": "^6.2.0",
    "vite-plugin-dts": "^4.5.3"
  },
  "lint-staged": {
    "*.ts": [
      "eslint . --fix",
      "jest --bail --findRelatedTests --passWithNoTests"
    ],
    "*.{js,css,md,yml,yaml,json}": "prettier . --write"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "keywords": [
    "typescript",
    "sanity",
    "imgur",
    "biketag"
  ]
}
