mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-01-15 22:45:56 +00:00
Nutomic
a91a03a536
* Split image endpoints into API v3 and v4 * Move into subfolders * Upload avatar endpoint and other changes * Various other changes fixes #1772 fixes #4001 * clippy * config options * fix ts bindings * fix api tests * Add option to disable image upload (fixes #1118) * split files into upload, download * move sitemap to top level, not in api * simplify code * add upload user banner * community icon/banner * site icon/banner * update js client * wip * add delete endpoints * change comment * optimization Co-authored-by: dullbananas <dull.bananas0@gmail.com> * move fn * 1024px banner * dont use static client * fix api tests * shear * proxy pictrs in request.rs (fixes #5270) * clippy * try to fix api tests * skip api tests * create user * debug * dbg * test * image * run another * fixed? * clippy * fix * fix health check --------- Co-authored-by: dullbananas <dull.bananas0@gmail.com>
37 lines
1.5 KiB
JSON
37 lines
1.5 KiB
JSON
{
|
|
"name": "api_tests",
|
|
"version": "0.0.1",
|
|
"description": "API tests for lemmy backend",
|
|
"main": "index.js",
|
|
"repository": "https://github.com/LemmyNet/lemmy",
|
|
"author": "Dessalines",
|
|
"license": "AGPL-3.0",
|
|
"packageManager": "pnpm@9.12.3",
|
|
"scripts": {
|
|
"lint": "tsc --noEmit && eslint --report-unused-disable-directives && prettier --check 'src/**/*.ts'",
|
|
"fix": "prettier --write src && eslint --fix src",
|
|
"api-test": "jest -i follow.spec.ts && jest -i image.spec.ts && jest -i user.spec.ts && jest -i private_message.spec.ts && jest -i community.spec.ts && jest -i private_community.spec.ts && jest -i post.spec.ts && jest -i comment.spec.ts ",
|
|
"api-test-follow": "jest -i follow.spec.ts",
|
|
"api-test-comment": "jest -i comment.spec.ts",
|
|
"api-test-post": "jest -i post.spec.ts",
|
|
"api-test-user": "jest -i user.spec.ts",
|
|
"api-test-community": "jest -i community.spec.ts",
|
|
"api-test-private-community": "jest -i private_community.spec.ts",
|
|
"api-test-private-message": "jest -i private_message.spec.ts",
|
|
"api-test-image": "jest -i image.spec.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.12",
|
|
"@types/node": "^22.9.0",
|
|
"@typescript-eslint/eslint-plugin": "^8.13.0",
|
|
"@typescript-eslint/parser": "^8.13.0",
|
|
"eslint": "^9.14.0",
|
|
"eslint-plugin-prettier": "^5.1.3",
|
|
"jest": "^29.5.0",
|
|
"lemmy-js-client": "0.20.0-image-api-rework.8",
|
|
"prettier": "^3.2.5",
|
|
"ts-jest": "^29.1.0",
|
|
"typescript": "^5.5.4",
|
|
"typescript-eslint": "^8.13.0"
|
|
}
|
|
}
|