forked from Q42/openapi-typescript-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.49 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
56
{
"name": "openapi-typescript-validator",
"version": "4.0.0+remoteref.2",
"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",
"prepare": "npm run build",
"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+https://github.com/Q42/openapi-typescript-validator.git"
},
"homepage": "https://github.com/Q42/openapi-typescript-validator",
"peerDependencies": {
"ajv": "^8.0.0",
"ajv-formats": "^2.0.0"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "github:APIDevTools/json-schema-ref-parser#499a8cc5a49e4d20cd7ad6fdd2038a1b13505383",
"@openapi-contrib/openapi-schema-to-json-schema": "^3.0.4",
"ajv": "^8.0.0",
"ajv-formats": "^2.0.0",
"js-yaml": "^4.0.0",
"json-schema-to-typescript": "^11.0.2",
"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"
}
}