-
Notifications
You must be signed in to change notification settings - Fork 213
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.81 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.81 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
{
"name": "@redocly/openapi-core",
"version": "2.5.0",
"description": "",
"type": "module",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"./lib/config/config": {
"import": "./lib/config/index.js",
"require": "./lib/config/index.js",
"types": "./lib/config/index.d.ts"
},
"./lib/bundle": {
"import": "./lib/bundle.js",
"require": "./lib/bundle.js",
"types": "./lib/bundle.d.ts"
}
},
"engines": {
"node": ">=22.12.0 || >=20.19.0 <21.0.0",
"npm": ">=10"
},
"engineStrict": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Redocly/redocly-cli.git"
},
"browser": {
"fs": false,
"path": "path-browserify",
"os": false,
"node:fs": false,
"node:path": "path-browserify",
"node:os": false,
"node:url": false,
"node:module": false,
"colorette": false
},
"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": {
"@redocly/ajv": "^8.11.2",
"@redocly/config": "^0.36.0",
"ajv-formats": "^2.1.1",
"colorette": "^1.2.0",
"js-levenshtein": "^1.1.6",
"js-yaml": "^4.1.0",
"minimatch": "^10.0.1",
"pluralize": "^8.0.0",
"yaml-ast-parser": "0.0.43"
},
"devDependencies": {
"@types/js-levenshtein": "^1.1.0",
"@types/js-yaml": "^4.0.3",
"@types/minimatch": "^5.1.2",
"@types/pluralize": "^0.0.29",
"json-schema-to-ts": "^3.1.0",
"typescript": "5.5.3"
}
}