{
    "name": "@amir.best/ts-json-schema-generator",
    "version": "1.0.1-alpha.1",
    "description": "Generate JSON schema from your Typescript sources",
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "bin": {
        "ts-json-schema-generator": "./bin/ts-json-schema-generator"
    },
    "files": [
        "dist",
        "src",
        "factory",
        "index.*",
        "ts-json-schema-generator.*"
    ],
    "author": {
        "name": "Alexander Evtushenko",
        "email": "aevtushenko@xiag.ch"
    },
    "contributors": [
        {
            "name": "Dominik Moritz",
            "email": "domoritz@gmail.com"
        },
        {
            "name": "MooYeol Prescott Lee",
            "email": "mooyoul@gmail.com"
        }
    ],
    "repository": {
        "type": "git",
        "url": "https://github.com/vega/ts-json-schema-generator.git"
    },
    "license": "MIT",
    "keywords": [
        "ts",
        "typescript",
        "json",
        "schema",
        "jsonschema"
    ],
    "engines": {
        "node": ">=10.0.0"
    },
    "dependencies": {
        "@types/json-schema": "^7.0.9",
        "commander": "^9.0.0",
        "glob": "^8.0.1",
        "json5": "^2.2.0",
        "normalize-path": "^3.0.0",
        "safe-stable-stringify": "^2.3.1"
    },
    "devDependencies": {
        "@auto-it/conventional-commits": "^10.32.5",
        "@auto-it/first-time-contributor": "^10.32.5",
        "@babel/core": "^7.16.7",
        "@babel/preset-env": "^7.16.8",
        "@babel/preset-typescript": "^7.16.7",
        "@types/glob": "^7.2.0",
        "@types/jest": "^28.1.1",
        "@types/node": "^18.0.0",
        "@types/normalize-path": "^3.0.0",
        "@typescript-eslint/eslint-plugin": "^5.9.1",
        "@typescript-eslint/parser": "^5.9.1",
        "ajv": "^8.8.2",
        "ajv-formats": "^2.1.1",
        "auto": "^10.32.5",
        "chai": "^4.3.4",
        "cross-env": "^7.0.3",
        "eslint": "^8.6.0",
        "eslint-config-prettier": "^8.3.0",
        "eslint-plugin-prettier": "^4.0.0",
        "jest": "^28.0.3",
        "jest-junit": "^14.0.0",
        "prettier": "^2.5.1",
        "ts-node": "^10.4.0",
        "typescript": "~4.7.2",
        "vega": "^5.21.0",
        "vega-lite": "^5.2.0"
    },
    "scripts": {
        "prepublishOnly": "yarn build",
        "build": "tsc",
        "watch": "tsc -w",
        "lint": "eslint \"{src,test,factory}/**/*.ts\"",
        "format": "yarn lint --fix",
        "test": "jest test/ --verbose",
        "test:fast": "cross-env FAST_TEST=1 jest test/ --verbose",
        "test:coverage": "yarn jest test/ --collectCoverage=true",
        "test:update": "cross-env UPDATE_SCHEMA=true yarn test:fast",
        "debug": "node -r ts-node/register --inspect-brk ts-json-schema-generator.ts",
        "run": "ts-node-transpile-only ts-json-schema-generator.ts",
        "release": "yarn build && auto shipit"
    },
    "peerDependencies": {
        "typescript": "4"
    }
}
