-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.07 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
{
"name": "lemmy_openapi_spec",
"version": "1.0.0",
"description": "Unofficial Lemmy OpenAPI specification",
"main": "src/gen_spec.ts",
"type": "module",
"repository": "https://github.com/MV-GH/lemmy_openapi_spec",
"author": "maarten.vercruysse <maarten.vercruysse@outlook.be>",
"license": "AGPL-3.0",
"scripts": {
"gen_types": "tsx src/gen_types.ts",
"add_summaries": "tsx src/add_summaries.ts",
"gen_components": "tsx src/gen_components.ts",
"build_docs": "redocly build-docs lemmy_spec.yaml -o ./public/index.html",
"lint_spec": "redocly lint lemmy_spec.yaml",
"gen_spec": "redocly bundle partials/api_routes.yaml -o lemmy_spec.yaml",
"full_gen": "yarn gen_types && yarn gen_components && yarn gen_spec",
"preview_docs": "redocly preview-docs -p 8888 lemmy_spec.yaml"
},
"dependencies": {
"tsutils": "^3.21.0",
"typeconv": "^2.3.1",
"yaml": "^2.3.2"
},
"devDependencies": {
"@redocly/cli": "^1.34.0",
"@types/node": "^22.13.13",
"tsx": "^4.19.3",
"typescript": "^5.1.6"
},
"packageManager": "yarn@4.7.0"
}