lemmy-js-client/package.json

57 lines
1.6 KiB
JSON
Raw Normal View History

2020-08-19 17:17:08 +00:00
{
"name": "lemmy-js-client",
"description": "A javascript / typescript client for Lemmy",
2022-11-21 16:49:50 +00:00
"version": "0.17.0-rc.54",
2020-08-19 17:17:08 +00:00
"author": "Dessalines <tyhou13@gmx.com>",
"license": "AGPL-3.0",
"main": "./dist/index.js",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
2021-09-01 14:52:23 +00:00
"docs": "typedoc src/index.ts --sourcefile-url-prefix 'https://github.com/LemmyNet/lemmy-js-client/tree/main/src/'",
2020-08-19 17:17:08 +00:00
"lint": "tsc --noEmit && eslint --report-unused-disable-directives --ext .js,.ts,.tsx src",
2021-10-14 18:41:39 +00:00
"prepare": "yarn run build && husky install"
2020-08-19 17:17:08 +00:00
},
"repository": "https://github.com/LemmyNet/lemmy-js-client",
"devDependencies": {
"@sniptt/monads": "^0.5.10",
2022-07-30 03:35:59 +00:00
"@types/node": "^18.6.2",
2021-09-28 16:08:22 +00:00
"@types/node-fetch": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"class-transformer": "^0.5.1",
"eslint": "^8.20.0",
"eslint-plugin-prettier": "^4.2.1",
2022-05-22 19:46:02 +00:00
"husky": "^8.0.1",
2022-07-30 03:35:59 +00:00
"lint-staged": "^13.0.3",
"node-fetch": "^3.2.9",
"prettier": "^2.7.1",
"prettier-plugin-import-sort": "^0.0.7",
"prettier-plugin-organize-imports": "^3.0.0",
2022-05-22 19:46:02 +00:00
"prettier-plugin-packagejson": "^2.2.18",
"reflect-metadata": "^0.1.13",
"sortpack": "^2.3.0",
2021-09-30 15:28:12 +00:00
"typedoc": "^0.21.6",
2021-09-01 14:52:23 +00:00
"typedoc-plugin-sourcefile-url": "^1.0.6",
"typescript": "^4.7.4"
2020-08-19 17:17:08 +00:00
},
"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"
}
2020-08-19 17:17:08 +00:00
}
}