lemmy-js-client/package.json
Dessalines f32772c2e1
Resolve endpoint (#28)
* Adding ResolveObject to the API. Fixes #27

* v0.11.4-rc.13

* v0.11.4-rc.14

* Forgot to add the websocket

* v0.11.4-rc.15
2021-08-23 16:15:24 -04:00

40 lines
1,008 B
JSON

{
"name": "lemmy-js-client",
"description": "A javascript / typescript client for Lemmy",
"version": "0.11.4-rc.15",
"author": "Dessalines <tyhou13@gmx.com>",
"license": "AGPL-3.0",
"main": "./dist/index.js",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"docs": "typedoc src/index.ts",
"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",
"eslint-plugin-jane": "^9.0.6",
"husky": "^7.0.1",
"lint-staged": "^11.0.1",
"node-fetch": "^2.6.1",
"prettier": "^2.3.2",
"sortpack": "^2.2.0",
"typedoc": "^0.21.6",
"typescript": "^4.3.5"
},
"types": "./dist/index.d.ts",
"lint-staged": {
"*.{ts,tsx,js}": [
"prettier --write",
"eslint --fix"
],
"package.json": [
"sortpack"
]
}
}