forked from HiDeoo/starlight-openapi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.33 KB
/
package.json
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
{
"name": "starlight-openapi-rapidoc-monorepo",
"version": "0.7.1",
"license": "MIT",
"description": "Starlight plugin to generate documentation from OpenAPI/Swagger specifications + RapiDoc.",
"author": "HiDeoo <[email protected]> (https://hideoo.dev)",
"type": "module",
"scripts": {
"test": "pnpm --stream -r test",
"lint": "pnpm -r lint",
"prepare": "husky install"
},
"devDependencies": {
"@hideoo/eslint-config": "3.0.0",
"@hideoo/prettier-config": "2.0.0",
"@hideoo/tsconfig": "2.0.1",
"astro": "4.4.0",
"eslint": "8.56.0",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"prettier": "3.0.3",
"prettier-plugin-astro": "0.12.0",
"typescript": "5.1.6"
},
"engines": {
"node": ">=18.14.1"
},
"packageManager": "[email protected]",
"private": true,
"sideEffects": false,
"keywords": [
"starlight",
"plugin",
"openapi",
"swagger",
"documentation",
"astro"
],
"homepage": "https://github.com/jeffdrumgod/starlight-openapi-rapidoc",
"repository": {
"type": "git",
"url": "https://github.com/jeffdrumgod/starlight-openapi-rapidoc.git"
},
"bugs": "https://github.com/jeffdrumgod/starlight-openapi-rapidoc/issues",
"lint-staged": {
"*": [
"prettier -w -u --cache",
"eslint --cache --no-warn-ignored --max-warnings=0"
]
}
}