lemmy-js-client 0.19.3-alpha.4 → 0.19.3-alpha.6
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +9 -6
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "lemmy-js-client",
|
3
3
|
"description": "A javascript / typescript client for Lemmy",
|
4
|
-
"version": "0.19.3-alpha.
|
4
|
+
"version": "0.19.3-alpha.6",
|
5
5
|
"author": "Dessalines <tyhou13@gmx.com>",
|
6
6
|
"license": "AGPL-3.0",
|
7
7
|
"main": "./dist/index.js",
|
@@ -12,27 +12,30 @@
|
|
12
12
|
"build": "tsc",
|
13
13
|
"docs": "typedoc src/index.ts",
|
14
14
|
"lint": "tsc --noEmit && eslint --report-unused-disable-directives --ext .js,.ts,.tsx src && prettier --check src",
|
15
|
-
"prepare": "pnpm run build && husky
|
15
|
+
"prepare": "pnpm run build && husky"
|
16
|
+
},
|
17
|
+
"repository": {
|
18
|
+
"type": "git",
|
19
|
+
"url": "git+https://github.com/LemmyNet/lemmy-js-client.git"
|
16
20
|
},
|
17
|
-
"repository": "https://github.com/LemmyNet/lemmy-js-client",
|
18
21
|
"dependencies": {
|
19
22
|
"cross-fetch": "^3.1.5",
|
20
23
|
"form-data": "^4.0.0"
|
21
24
|
},
|
22
25
|
"devDependencies": {
|
23
|
-
"@types/node": "^20.10
|
26
|
+
"@types/node": "^20.11.10",
|
24
27
|
"@typescript-eslint/eslint-plugin": "^6.13.1",
|
25
28
|
"@typescript-eslint/parser": "^6.13.1",
|
26
29
|
"eslint": "^8.54.0",
|
27
30
|
"eslint-plugin-prettier": "^5.0.1",
|
28
|
-
"husky": "^
|
31
|
+
"husky": "^9.0.6",
|
29
32
|
"lint-staged": "^15.1.0",
|
30
33
|
"prettier": "^3.1.0",
|
31
34
|
"prettier-plugin-import-sort": "^0.0.7",
|
32
35
|
"prettier-plugin-organize-imports": "^3.2.4",
|
33
36
|
"prettier-plugin-packagejson": "^2.4.6",
|
34
37
|
"sortpack": "^2.3.5",
|
35
|
-
"typedoc": "^0.
|
38
|
+
"typedoc": "^0.25.7",
|
36
39
|
"typescript": "^5.3.2"
|
37
40
|
},
|
38
41
|
"types": "./dist/index.d.ts",
|