lemmy-js-client/package.json

39 lines
945 B
JSON
Raw Normal View History

2020-08-19 17:17:08 +00:00
{
"name": "lemmy-js-client",
"description": "A javascript / typescript client for Lemmy",
2021-07-23 14:01:19 +00:00
"version": "0.11.3-rc.4",
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",
"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": {
"@types/node-fetch": "^2.5.11",
"eslint": "^7.31.0",
2021-01-24 04:56:39 +00:00
"eslint-plugin-jane": "^9.0.6",
"husky": "^7.0.1",
"lint-staged": "^11.0.1",
2020-09-08 14:32:53 +00:00
"node-fetch": "^2.6.1",
"prettier": "^2.3.2",
2021-01-24 04:56:39 +00:00
"sortpack": "^2.2.0",
"typescript": "^4.3.5"
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"
]
}
}