forked from Q42/openapi-typescript-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.4 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
46
47
48
49
50
51
52
53
54
55
{
"name": "openapi-typescript-validator-ext-ref",
"version": "3.2.0-external-ref-support",
"description": "Generate typescript with ajv validation based on openapi schemas",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --build --watch",
"prepublishOnly": "rm -rf dist && npm run build",
"postpublish": "git push && git push --tags",
"test": "(cd tests && npm test)"
},
"keywords": [
"openapi",
"schema",
"json schema",
"typescript",
"generator",
"generate",
"validator",
"validate",
"json"
],
"author": "Q42",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+github.com/Kisfejes/openapi-typescript-validator.git"
},
"homepage": "https://github.com/Kisfejes/openapi-typescript-validator",
"peerDependencies": {
"ajv": "^8.0.0",
"ajv-formats": "^2.0.0"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.9",
"@openapi-contrib/openapi-schema-to-json-schema": "^3.0.4",
"ajv": "^8.1.0",
"ajv-formats": "^2.0.2",
"js-yaml": "^4.0.0",
"json-schema-to-typescript": "^10.1.3",
"lodash.keyby": "^4.6.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.0",
"@types/lodash.keyby": "^4.6.6",
"@types/object-hash": "^1.3.4",
"prettier": "^2.2.1",
"typescript": "^4.2.2"
}
}