{
  "name": "lemmy-js-client",
  "description": "A javascript / typescript client for Lemmy",
  "version": "1.0.0-admin-endpoints.0",
  "author": "Dessalines",
  "license": "AGPL-3.0",
  "main": "./dist/index.js",
  "files": [
    "/dist"
  ],
  "scripts": {
    "build": "tsc",
    "docs": "typedoc src/index.ts",
    "lint": "tsc --noEmit && eslint --report-unused-disable-directives && prettier --check src",
    "prepare": "pnpm run build && husky",
    "tsoa": "tsoa spec-and-routes && tsc && redocly build-docs tsoa_build/swagger.json"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/LemmyNet/lemmy-js-client.git"
  },
  "dependencies": {
    "@tsoa/runtime": "^6.6.0"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.0",
    "@redocly/cli": "^2.0.0",
    "@types/node": "^24.0.0",
    "@typescript-eslint/eslint-plugin": "^8.7.0",
    "@typescript-eslint/parser": "^8.7.0",
    "ajv": "^8.17.1",
    "eslint": "^10.0.0",
    "eslint-plugin-prettier": "^5.2.1",
    "husky": "^9.1.4",
    "joi": "^18.0.0",
    "lint-staged": "^17.0.0",
    "prettier": "^3.3.3",
    "prettier-plugin-import-sort": "^0.0.7",
    "prettier-plugin-organize-imports": "^4.0.0",
    "prettier-plugin-packagejson": "^3.0.0",
    "sortpack": "^4.0.0",
    "tsoa": "^6.6.0",
    "typedoc": "^0.28.0",
    "typescript": "^6.0.0",
    "typescript-eslint": "^8.7.0"
  },
  "packageManager": "pnpm@11.3.0",
  "types": "./dist/index.d.ts",
  "lint-staged": {
    "*.{ts,tsx,js}": [
      "prettier --write",
      "eslint --fix"
    ],
    "package.json": [
      "sortpack"
    ]
  },
  "importSort": {
    ".js, .jsx, .ts, .tsx": {
      "style": "module",
      "parser": "typescript"
    }
  }
}
