lemmy-js-client/package.json
Nutomic 646b95907b
Rework image api (#425)
* Adding list reports.

* 0.20.0-reports-combined.0

* Fix comment.

* Use internal tagging.

* 0.20.0-reports-combined.1

* 0.20.0-reports-combined.2

* 0.20.0-reports-combined.3

* Rework image api

* fix

* 0.20.0-image-api-rework.0

* rename

* 0.20.0-image-api-rework.2

* rename params

* 0.20.0-image-api-rework.3

* fix null

* fix upload urls

* 0.20.0-image-api-rework.4

* build full url

* 0.20.0-image-api-rework.5

* remaining upload endpoints

* 0.20.0-image-api-rework.6

* 0.20.0-image-api-rework.7

* Update dependency @types/node to v22.10.5 (#438)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* Update typescript-eslint monorepo to v8.19.0 (#439)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* add missing endpoints including delete

* 0.20.0-image-api-rework.8

---------

Co-authored-by: Dessalines <tyhou13@gmx.com>
Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-01-13 23:29:23 -05:00

55 lines
1.4 KiB
JSON

{
"name": "lemmy-js-client",
"description": "A javascript / typescript client for Lemmy",
"version": "0.20.0-image-api-rework.8",
"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.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"
}
}
}