lemmy-js-client 0.17.2-rc.21 → 0.17.2-rc.23
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/http.d.ts +1 -5
- package/dist/http.js +340 -393
- package/dist/websocket.js +180 -182
- package/package.json +11 -4
package/package.json
CHANGED
@@ -1,13 +1,15 @@
|
|
1
1
|
{
|
2
2
|
"name": "lemmy-js-client",
|
3
|
-
"version": "0.17.2-rc.
|
3
|
+
"version": "0.17.2-rc.23",
|
4
4
|
"description": "A javascript / typescript client for Lemmy",
|
5
5
|
"repository": "https://github.com/LemmyNet/lemmy-js-client",
|
6
6
|
"license": "AGPL-3.0",
|
7
7
|
"author": "Dessalines <tyhou13@gmx.com>",
|
8
8
|
"main": "./dist/index.js",
|
9
9
|
"types": "./dist/index.d.ts",
|
10
|
-
"files": [
|
10
|
+
"files": [
|
11
|
+
"/dist"
|
12
|
+
],
|
11
13
|
"scripts": {
|
12
14
|
"build": "tsc",
|
13
15
|
"docs": "typedoc src/index.ts",
|
@@ -15,8 +17,13 @@
|
|
15
17
|
"prepare": "yarn run build && husky install"
|
16
18
|
},
|
17
19
|
"lint-staged": {
|
18
|
-
"*.{ts,tsx,js}": [
|
19
|
-
|
20
|
+
"*.{ts,tsx,js}": [
|
21
|
+
"prettier --write",
|
22
|
+
"eslint --fix"
|
23
|
+
],
|
24
|
+
"package.json": [
|
25
|
+
"sortpack"
|
26
|
+
]
|
20
27
|
},
|
21
28
|
"dependencies": {
|
22
29
|
"cross-fetch": "^3.1.5",
|