lemmy-js-client/package.json

44 lines
1,011 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",
2020-09-08 14:32:53 +00:00
"version": "1.0.10",
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": {
2020-08-20 03:06:12 +00:00
"@types/node-fetch": "^2.5.6",
2020-09-08 14:32:53 +00:00
"eslint": "^7.8.1",
"eslint-plugin-jane": "^9.0.0",
"husky": "^4.3.0",
"lint-staged": "^10.3.0",
"node-fetch": "^2.6.1",
"prettier": "^2.1.1",
"sortpack": "^2.1.8",
"typescript": "^4.0.2"
2020-08-19 17:17:08 +00:00
},
"types": "./dist/index.d.ts",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js}": [
"prettier --write",
"eslint --fix"
],
"package.json": [
"sortpack"
]
}
}