-
Notifications
You must be signed in to change notification settings - Fork 212
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.19 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.19 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@redocly/cli",
"version": "2.3.0",
"description": "",
"license": "MIT",
"bin": {
"redocly": "bin/cli.js",
"openapi": "bin/cli.js"
},
"type": "module",
"engines": {
"node": ">=22.12.0 || >=20.19.0 <21.0.0",
"npm": ">=10"
},
"engineStrict": true,
"scripts": {
"compile": "tsc",
"copy-assets": "cp src/commands/build-docs/template.hbs lib/commands/build-docs/template.hbs ",
"prepack": "npm run copy-assets",
"prepublishOnly": "npm run copy-assets && cp ../../README.md ."
},
"repository": {
"type": "git",
"url": "https://github.com/Redocly/redocly-cli.git"
},
"homepage": "https://github.com/Redocly/redocly-cli",
"keywords": [
"linter",
"OpenAPI",
"Swagger",
"OpenAPI linter",
"Swagger linter",
"AsyncAPI linter",
"Arazzo linter",
"oas"
],
"contributors": [
"Roman Hotsiy <roman@redocly.com> (https://redocly.com/)"
],
"dependencies": {
"@opentelemetry/exporter-trace-otlp-http": "0.202.0",
"@opentelemetry/resources": "2.0.1",
"@opentelemetry/sdk-trace-node": "2.0.1",
"@opentelemetry/semantic-conventions": "1.34.0",
"@redocly/openapi-core": "2.3.0",
"@redocly/respect-core": "2.3.0",
"abort-controller": "^3.0.0",
"chokidar": "^3.5.1",
"colorette": "^1.2.0",
"cookie": "^0.7.2",
"dotenv": "16.4.7",
"form-data": "^4.0.4",
"glob": "^11.0.1",
"handlebars": "^4.7.6",
"https-proxy-agent": "^7.0.5",
"mobx": "^6.0.4",
"pluralize": "^8.0.0",
"react": "^17.0.0 || ^18.2.0 || ^19.0.0",
"react-dom": "^17.0.0 || ^18.2.0 || ^19.0.0",
"redoc": "2.5.1",
"semver": "^7.5.2",
"set-cookie-parser": "^2.3.5",
"simple-websocket": "^9.0.0",
"styled-components": "^6.0.7",
"undici": "^6.21.3",
"yargs": "17.0.1"
},
"devDependencies": {
"@types/configstore": "^5.0.1",
"@types/cookie": "0.6.0",
"@types/har-format": "^1.2.16",
"@types/pluralize": "^0.0.29",
"@types/react": "^17.0.0 || ^18.2.21 || ^19.0.0",
"@types/react-dom": "^17.0.0 || ^18.2.7 || ^19.0.0",
"@types/semver": "^7.5.0",
"@types/set-cookie-parser": "2.4.10",
"@types/yargs": "17.0.32",
"typescript": "5.5.3"
}
}