forked from cloud-annotations/docusaurus-openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.31 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.31 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
65
66
67
68
{
"name": "docusaurus-theme-openapi",
"description": "OpenAPI theme for Docusaurus.",
"version": "0.7.7",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/cloud-annotations/docusaurus-openapi.git",
"directory": "packages/docusaurus-theme-openapi"
},
"bugs": {
"url": "https://github.com/cloud-annotations/docusaurus-openapi/issues"
},
"types": "src/theme-openapi.d.ts",
"main": "lib/index.js",
"scripts": {
"build": "tsc --noEmit && yarn babel:lib && yarn babel:lib-next && yarn format:lib-next",
"watch": "concurrently --names \"lib,lib-next,tsc\" --kill-others \"yarn babel:lib --watch\" \"yarn babel:lib-next --watch\" \"yarn tsc --watch\"",
"babel:lib": "cross-env BABEL_ENV=lib babel src -d lib --extensions \".tsx,.ts\" --ignore \"**/*.d.ts\" --copy-files",
"babel:lib-next": "cross-env BABEL_ENV=lib-next babel src -d lib-next --extensions \".tsx,.ts\" --ignore \"**/*.d.ts\" --copy-files",
"format:lib-next": "prettier --config ../../.prettierrc.json --write \"lib-next/**/*.{js,ts,jsx,tsc}\""
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.7.0",
"@docusaurus/types": "^3.7.0",
"@types/concurrently": "^6.3.0",
"@types/crypto-js": "^4.1.0",
"@types/lodash": "^4.14.176",
"@types/mdx-js__react": "^1.5.4",
"@types/postman-collection": "^3.5.3",
"@types/rtlcss": "^3.1.1",
"concurrently": "^5.2.0"
},
"dependencies": {
"@docusaurus/theme-common": "^3.7.0",
"@mdx-js/react": "^3.0.0",
"@monaco-editor/react": "^4.7.0",
"@reduxjs/toolkit": "^1.7.1",
"buffer": "^6.0.3",
"clsx": "^1.2.1",
"crypto-js": "^4.1.1",
"docusaurus-plugin-openapi": "^0.7.7",
"immer": "^9.0.7",
"lodash": "^4.17.20",
"marked": "^11.0.0",
"monaco-editor": "^0.31.1",
"postman-code-generators": "^1.0.0",
"postman-collection": "^4.1.0",
"prism-react-renderer": "^2.1.0",
"process": "^0.11.10",
"react-magic-dropzone": "^1.0.1",
"react-redux": "^7.2.0",
"redux-devtools-extension": "^2.13.8",
"refractor": "^4.8.1",
"striptags": "^3.2.0",
"webpack": "^5.95.0"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"engines": {
"node": ">=18"
}
}