2020-08-19 17:17:08 +00:00
|
|
|
{
|
|
|
|
"name": "lemmy-js-client",
|
2022-12-09 15:01:21 +00:00
|
|
|
"description": "A javascript / typescript client for Lemmy",
|
2024-09-18 08:42:08 +00:00
|
|
|
"version": "0.20.0-alpha.5",
|
2022-12-09 15:01:21 +00:00
|
|
|
"author": "Dessalines <tyhou13@gmx.com>",
|
2024-01-29 03:08:00 +00:00
|
|
|
"license": "AGPL-3.0",
|
2020-08-19 17:17:08 +00:00
|
|
|
"main": "./dist/index.js",
|
2023-06-05 23:32:23 +00:00
|
|
|
"files": [
|
|
|
|
"/dist"
|
|
|
|
],
|
2020-08-19 17:17:08 +00:00
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
2023-05-10 15:15:51 +00:00
|
|
|
"docs": "typedoc src/index.ts",
|
2024-05-15 17:28:23 +00:00
|
|
|
"lint": "tsc --noEmit && eslint --report-unused-disable-directives && prettier --check src",
|
2024-01-29 03:08:00 +00:00
|
|
|
"prepare": "pnpm run build && husky"
|
2020-08-19 17:17:08 +00:00
|
|
|
},
|
2024-01-29 03:08:00 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/LemmyNet/lemmy-js-client.git"
|
2022-12-09 15:01:21 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-08-03 13:45:37 +00:00
|
|
|
"@types/node": "^22.1.0",
|
2024-07-31 21:54:58 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
|
|
"@typescript-eslint/parser": "^8.0.0",
|
2024-08-03 13:45:37 +00:00
|
|
|
"eslint": "^9.8.0",
|
|
|
|
"eslint-plugin-prettier": "^5.2.1",
|
|
|
|
"husky": "^9.1.4",
|
|
|
|
"lint-staged": "^15.2.7",
|
|
|
|
"prettier": "^3.3.3",
|
2021-12-06 19:44:10 +00:00
|
|
|
"prettier-plugin-import-sort": "^0.0.7",
|
2024-07-10 14:15:20 +00:00
|
|
|
"prettier-plugin-organize-imports": "^4.0.0",
|
2024-08-03 13:45:37 +00:00
|
|
|
"prettier-plugin-packagejson": "^2.5.1",
|
2024-02-19 17:29:16 +00:00
|
|
|
"sortpack": "^2.4.0",
|
2024-08-03 13:45:37 +00:00
|
|
|
"typedoc": "^0.26.5",
|
|
|
|
"typescript": "^5.5.4",
|
2024-07-31 21:54:58 +00:00
|
|
|
"typescript-eslint": "^8.0.0"
|
2020-08-19 17:17:08 +00:00
|
|
|
},
|
2024-09-02 03:12:43 +00:00
|
|
|
"packageManager": "pnpm@9.9.0",
|
2024-01-29 03:08:00 +00:00
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"lint-staged": {
|
|
|
|
"*.{ts,tsx,js}": [
|
|
|
|
"prettier --write",
|
|
|
|
"eslint --fix"
|
|
|
|
],
|
|
|
|
"package.json": [
|
|
|
|
"sortpack"
|
|
|
|
]
|
|
|
|
},
|
2021-12-06 19:44:10 +00:00
|
|
|
"importSort": {
|
|
|
|
".js, .jsx, .ts, .tsx": {
|
|
|
|
"style": "module",
|
|
|
|
"parser": "typescript"
|
|
|
|
}
|
2024-04-16 23:10:57 +00:00
|
|
|
}
|
2020-08-19 17:17:08 +00:00
|
|
|
}
|