-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.67 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "lemmy-js-client",
"description": "A javascript / typescript client for Lemmy",
"version": "1.0.0-search-pagination.1",
"author": "Dessalines",
"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 && prettier --check src",
"prepare": "pnpm run build && husky",
"tsoa": "tsoa spec-and-routes && tsc && redocly build-docs tsoa_build/swagger.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LemmyNet/lemmy-js-client.git"
},
"dependencies": {
"@tsoa/runtime": "^6.6.0"
},
"devDependencies": {
"@eslint/js": "^10.0.0",
"@redocly/cli": "^2.0.0",
"@types/node": "^24.0.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"ajv": "^8.17.1",
"eslint": "^10.0.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.4",
"joi": "^18.0.0",
"lint-staged": "^16.0.0",
"prettier": "^3.3.3",
"prettier-plugin-import-sort": "^0.0.7",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-packagejson": "^3.0.0",
"sortpack": "^4.0.0",
"tsoa": "^6.6.0",
"typedoc": "^0.28.0",
"typescript": "^6.0.0",
"typescript-eslint": "^8.7.0"
},
"packageManager": "pnpm@10.33.0",
"types": "./dist/index.d.ts",
"lint-staged": {
"*.{ts,tsx,js}": [
"prettier --write",
"eslint --fix"
],
"package.json": [
"sortpack"
]
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}