-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.03 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.03 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
{
"name": "typescript-schema-validator",
"version": "0.0.8",
"description": "Generate TS interfaces / types to json schema for validation in runtime",
"author": "Nusendra Hanggarawan",
"license": "ISC",
"homepage": "https://github.com/nusendra/typescript-schema-validator.git",
"main": "dist/index.js",
"bin": {
"generate-schema": "./bin/cli.js"
},
"scripts": {
"build": "rm -rf dist && tsc",
"generate-ts-schema": "node lib/schema-generator.js"
},
"dependencies": {
"ajv": "^8.11.0",
"typescript-json-schema": "^0.54.0"
},
"devDependencies": {
"typescript": "^4.8.4"
},
"files": ["bin/", "dist/", "README.md"],
"keywords": [
"typescript",
"ts",
"schema",
"runtime",
"types",
"interfaces",
"generator",
"ajv",
"validator",
"javascript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nusendra/typescript-schema-validator.git"
},
"bugs": {
"url": "https://github.com/nusendra/typescript-schema-validator/issues"
}
}