-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "redoc-loader",
"version": "1.1.2",
"description": "Webpack Redoc (OpenAPI) loader that's an alternative to redoc-cli",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prepublishOnly": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/encharm/redoc-loader.git"
},
"author": "Damian Kaczmarek <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/encharm/redoc-loader/issues"
},
"homepage": "https://github.com/encharm/redoc-loader#readme",
"devDependencies": {
"@redocly/openapi-core": "^1.0.0-beta.104",
"@types/loader-utils": "^2.0.3",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.25",
"typescript": "^4.7.4",
"webpack": "^5.73.0"
},
"dependencies": {
"loader-utils": "^3.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"redoc": "^2.0.0-rc.72",
"redoc-cli": "^0.13.16",
"styled-components": "^5.3.5"
},
"files": [
"dist/index*"
]
}