-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·45 lines (45 loc) · 1.11 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
41
42
43
44
45
{
"name": "openapi-fastify-codegen",
"main": "./lib/codegen.js",
"type": "module",
"version": "1.0.2",
"license": "MIT",
"description": "An OpenAPI v3 code generator for Node.js with Fastify framework",
"bin": {
"ofc": "./cli.js"
},
"bugs": {
"url": "https://github.com/ozonep/openapi-fastify-codegen/issues"
},
"engines": {
"node": ">=13.2"
},
"repository": {
"type": "git",
"url": "git://github.com/ozonep/openapi-fastify-codegen.git"
},
"keywords": [
"openapi",
"fastify",
"node.js"
],
"author": {
"name": "Ivan Malkov",
"email": "[email protected]"
},
"homepage": "https://github.com/ozonep/openapi-fastify-codegen",
"dependencies": {
"@openapi-contrib/openapi-schema-to-json-schema": "^3.0.0",
"api-schema-builder": "^1.2.1",
"commander": "^4.1.1",
"fs.extra": "^1.3.2",
"handlebars": "^4.7.3",
"js-beautify": "^1.10.3",
"js-yaml": "^3.13.1",
"json-schema-merge-allof": "^0.7.0",
"json-schema-ref-parser": "^7.1.3",
"lodash": "^4.17.15",
"project-name-generator": "^2.1.7",
"word-wrap": "^1.2.3"
}
}