mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-01 01:59:55 +00:00
a4ed93ae16
* fix: Move required dependencies to prod dependencies instead of dev dependencies * fix: Make node-fetch types match version * Delete accidental pnpm lockfile
58 lines
1.6 KiB
JSON
58 lines
1.6 KiB
JSON
{
|
|
"name": "lemmy-js-client",
|
|
"version": "0.17.0-rc.54",
|
|
"description": "A javascript / typescript client for Lemmy",
|
|
"repository": "https://github.com/LemmyNet/lemmy-js-client",
|
|
"license": "AGPL-3.0",
|
|
"author": "Dessalines <tyhou13@gmx.com>",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"/dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"docs": "typedoc src/index.ts --sourcefile-url-prefix 'https://github.com/LemmyNet/lemmy-js-client/tree/main/src/'",
|
|
"lint": "tsc --noEmit && eslint --report-unused-disable-directives --ext .js,.ts,.tsx src",
|
|
"prepare": "yarn run build && husky install"
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,tsx,js}": [
|
|
"prettier --write",
|
|
"eslint --fix"
|
|
],
|
|
"package.json": [
|
|
"sortpack"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@sniptt/monads": "^0.5.10",
|
|
"class-transformer": "^0.5.1",
|
|
"node-fetch": "2.6.6",
|
|
"reflect-metadata": "^0.1.13"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18.6.2",
|
|
"@types/node-fetch": "2.6.2",
|
|
"@typescript-eslint/eslint-plugin": "^5.31.0",
|
|
"@typescript-eslint/parser": "^5.31.0",
|
|
"eslint": "^8.20.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"husky": "^8.0.1",
|
|
"lint-staged": "^13.0.3",
|
|
"prettier": "^2.7.1",
|
|
"prettier-plugin-import-sort": "^0.0.7",
|
|
"prettier-plugin-organize-imports": "^3.0.0",
|
|
"prettier-plugin-packagejson": "^2.2.18",
|
|
"sortpack": "^2.3.0",
|
|
"typedoc": "^0.21.6",
|
|
"typedoc-plugin-sourcefile-url": "^1.0.6",
|
|
"typescript": "^4.7.4"
|
|
},
|
|
"importSort": {
|
|
".js, .jsx, .ts, .tsx": {
|
|
"style": "module",
|
|
"parser": "typescript"
|
|
}
|
|
}
|
|
}
|