{ "name": "lemmy-js-client", "description": "A javascript / typescript client for Lemmy", "version": "0.19.4-alpha.9", "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 --ext .js,.ts,.tsx src && prettier --check src", "prepare": "pnpm run build && husky" }, "repository": { "type": "git", "url": "git+https://github.com/LemmyNet/lemmy-js-client.git" }, "dependencies": { "cross-fetch": "^4.0.0", "form-data": "^4.0.0" }, "devDependencies": { "@types/node": "^20.11.19", "@typescript-eslint/eslint-plugin": "^7.0.1", "@typescript-eslint/parser": "^7.0.1", "eslint": "^8.56.0", "eslint-plugin-prettier": "^5.1.3", "husky": "^9.0.11", "lint-staged": "^15.2.2", "prettier": "^3.2.5", "prettier-plugin-import-sort": "^0.0.7", "prettier-plugin-organize-imports": "^3.2.4", "prettier-plugin-packagejson": "^2.4.11", "sortpack": "^2.4.0", "typedoc": "^0.25.8", "typescript": "^5.3.3" }, "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" } } }