2020-08-19 17:17:08 +00:00
|
|
|
{
|
|
|
|
"name": "lemmy-js-client",
|
|
|
|
"description": "A javascript / typescript client for Lemmy",
|
2021-09-29 20:00:03 +00:00
|
|
|
"version": "0.13.0",
|
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",
|
|
|
|
"prepare": "yarn run build"
|
|
|
|
},
|
|
|
|
"repository": "https://github.com/LemmyNet/lemmy-js-client",
|
|
|
|
"devDependencies": {
|
2021-09-29 19:59:41 +00:00
|
|
|
"@types/node": "^16.10.2",
|
2021-09-28 16:08:22 +00:00
|
|
|
"@types/node-fetch": "^3.0.3",
|
|
|
|
"eslint": "^7.32.0",
|
2021-01-24 04:56:39 +00:00
|
|
|
"eslint-plugin-jane": "^9.0.6",
|
2021-09-28 16:08:22 +00:00
|
|
|
"husky": "^7.0.2",
|
|
|
|
"lint-staged": "^11.1.2",
|
|
|
|
"node-fetch": "^3.0.0",
|
|
|
|
"prettier": "^2.4.1",
|
2021-01-24 04:56:39 +00:00
|
|
|
"sortpack": "^2.2.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",
|
2021-09-28 16:08:22 +00:00
|
|
|
"typescript": "^4.4.3"
|
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"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|