@redocly/openapi-docs 3.0.0-alpha.86 → 3.0.0-alpha.88

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redocly/openapi-docs",
3
- "version": "3.0.0-alpha.86",
3
+ "version": "3.0.0-alpha.88",
4
4
  "description": "Redocly OpenAPI Docs",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib-esm/index.js",
@@ -23,19 +23,20 @@
23
23
  "styled-components": "^4.1.1 || ^5.3.11"
24
24
  },
25
25
  "dependencies": {
26
- "@markdoc/markdoc": "0.4.0",
27
- "@redocly/openapi-core": "^1.4.0",
28
- "@redocly/vscode-json-languageservice": "3.4.9",
29
- "@uiw/react-codemirror": "^4.21.20",
30
- "@uiw/codemirror-theme-material": "^4.21.20",
31
26
  "@codemirror/lang-json": "^6.0.1",
32
27
  "@codemirror/lint": "^6.4.2",
28
+ "@codemirror/state": "^6.4.1",
33
29
  "@lezer/highlight": "^1.1.6",
30
+ "@markdoc/markdoc": "0.4.0",
31
+ "@redocly/openapi-core": "1.10.4",
32
+ "@redocly/vscode-json-languageservice": "3.4.9",
33
+ "@uiw/codemirror-theme-material": "^4.21.20",
34
+ "@uiw/react-codemirror": "^4.21.24",
34
35
  "deepmerge": "^4.2.2",
35
36
  "dompurify": "^2.0.12",
36
37
  "fast-deep-equal": "^3.1.3",
37
38
  "hotkeys-js": "^3.7.6",
38
- "react-hook-form": "^7.47.0",
39
+ "jotai": "^2.4.2",
39
40
  "json-pointer": "^0.6.2",
40
41
  "lunr": "^2.3.8",
41
42
  "mark.js": "^8.11.1",
@@ -43,9 +44,9 @@
43
44
  "path-browserify": "^1.0.1",
44
45
  "perfect-scrollbar": "^1.5.5",
45
46
  "prismjs": "^1.22.0",
47
+ "react-hook-form": "^7.47.0",
46
48
  "react-router-dom": "^6.21.1",
47
49
  "react-tabs": "^6.0.2",
48
- "jotai": "^2.4.2",
49
50
  "slugify": "^1.4.4",
50
51
  "stickyfill": "^1.1.1",
51
52
  "stringify-object": "^3.3.0",
@@ -94,11 +95,12 @@
94
95
  "react": "18.2.0",
95
96
  "react-dom": "18.2.0",
96
97
  "react-is": "18.2.0",
98
+ "rimraf": "5.0.5",
97
99
  "string-replace-loader": "3.1.0",
98
100
  "style-loader": "1.3.0",
99
101
  "styled-components": "5.3.11",
100
102
  "terser": "5.16.3",
101
- "ts-jest": "29.1.1",
103
+ "ts-jest": "29.1.2",
102
104
  "ts-node": "10.9.1",
103
105
  "typescript": "5.2.2",
104
106
  "unfetch": "4.2.0",
@@ -107,7 +109,7 @@
107
109
  "webpack-cli": "5.1.4",
108
110
  "webpack-dev-server": "4.15.1",
109
111
  "workerize-loader": "github:redocly/workerize-loader#webpack-5-dist",
110
- "@redocly/theme": "0.33.3"
112
+ "@redocly/theme": "0.35.4"
111
113
  },
112
114
  "scripts": {
113
115
  "start": "webpack serve --mode=development --hot",
@@ -119,14 +121,14 @@
119
121
  "test:coverage": "jest --coverage",
120
122
  "test:coverage:html": "jest --coverage --coverageReporters html",
121
123
  "ts:check": "tsc --noEmit --skipLibCheck",
122
- "clean": "rm -rf bin dist lib lib-esm redocly-static",
124
+ "clean": "rimraf bin dist lib lib-esm redocly-static",
123
125
  "compile:lib": "npm run compile:es5 && npm run compile:esm && npm run bundle-worker",
124
- "compile:es5": "rm -rf lib && tsc -p tsconfig.lib.json && node scripts/minify.js lib",
125
- "compile:esm": "rm -rf lib-esm && tsc -p tsconfig.lib-esm.json && node scripts/minify.js lib-esm",
126
+ "compile:es5": "rimraf lib && tsc -p tsconfig.lib.json && node scripts/minify.js lib",
127
+ "compile:esm": "rimraf lib-esm && tsc -p tsconfig.lib-esm.json && node scripts/minify.js lib-esm",
126
128
  "bundle-worker": "webpack --config webpack.config.worker.js --mode=production",
127
129
  "publish:cdn": "scripts/publish-cdn.sh",
128
130
  "clear:cache": "scripts/clear-cache.sh",
129
- "pack:sourcemaps": "rm -rf openapi-docs.sourcemaps.tag.gz && find lib lib-esm -name \"*.js.map\" | xargs tar -czvf openapi-docs.sourcemaps.tar.gz",
131
+ "pack:sourcemaps": "rimraf openapi-docs.sourcemaps.tag.gz && find lib lib-esm -name \"*.js.map\" | xargs tar -czvf openapi-docs.sourcemaps.tar.gz",
130
132
  "stats": "webpack --json --profile --mode=production -p > stats.json && npx webpack-bundle-analyzer stats.json",
131
133
  "list:licenses": "node ./scripts/list-licenses.js",
132
134
  "license:check": "npx license-checker --production --onlyAllow 'MIT;ISC;Apache-2.0;Apache;CC0-1.0;BSD;BSD-2-Clause;BSD-3-Clause;UNKNOWN' --summary",