{
  "name": "lemmy-js-client",
  "description": "A javascript / typescript client for Lemmy",
  "version": "0.20.0-image-api-rework.2",
  "author": "Dessalines <tyhou13@gmx.com>",
  "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"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/LemmyNet/lemmy-js-client.git"
  },
  "devDependencies": {
    "@types/node": "^22.7.4",
    "@typescript-eslint/eslint-plugin": "^8.7.0",
    "@typescript-eslint/parser": "^8.7.0",
    "eslint": "^9.11.1",
    "eslint-plugin-prettier": "^5.2.1",
    "husky": "^9.1.4",
    "lint-staged": "^15.2.7",
    "prettier": "^3.3.3",
    "prettier-plugin-import-sort": "^0.0.7",
    "prettier-plugin-organize-imports": "^4.0.0",
    "prettier-plugin-packagejson": "^2.5.1",
    "sortpack": "^2.4.0",
    "typedoc": "^0.27.0",
    "typescript": "^5.5.4",
    "typescript-eslint": "^8.7.0"
  },
  "packageManager": "pnpm@9.15.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"
    }
  }
}