{ "name": "lemmy-js-client", "description": "A javascript / typescript client for Lemmy", "version": "0.20.0-alpha.5", "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" }, "repository": { "type": "git", "url": "git+https://github.com/LemmyNet/lemmy-js-client.git" }, "devDependencies": { "@types/node": "^22.1.0", "@typescript-eslint/eslint-plugin": "^8.0.0", "@typescript-eslint/parser": "^8.0.0", "eslint": "^9.8.0", "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.26.5", "typescript": "^5.5.4", "typescript-eslint": "^8.0.0" }, "packageManager": "pnpm@9.9.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" } } }