{
  "name": "json-schema-to-dts",
  "version": "2.0.1",
  "description": "Create TypeScript types from json-schema v7",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "is-valid-variable": "^1.0.1"
  },
  "devDependencies": {
    "@types/jest": "^29.5.12",
    "@types/json-schema": "^7.0.6",
    "@types/node": "^18.19.31",
    "esbuild": "^0.20.2",
    "gh-release": "^5.0.0",
    "jest": "^29.7.0",
    "jest-junit": "^16.0.0",
    "json-schema-test-suite": "github:json-schema-org/JSON-Schema-Test-Suite#0a0f0cd",
    "kacl": "^1.1.1",
    "prettier": "^3.2.5",
    "rollup-plugin-ts": "^3.0.2",
    "ts-jest": "^29.1.2",
    "ts-morph": "^22.0.0",
    "ts-node": "^10.9.2",
    "tslib": "^2.0.2",
    "typescript": "^5.4.5"
  },
  "scripts": {
    "build:dts": "npx tsc --emitDeclarationOnly --sourceMap false",
    "build:js": "npx esbuild --bundle --tree-shaking=true --outfile=dist/index.js --platform=node src/index.ts",
    "build": "npm run build:js && npm run build:dts",
    "generate": "ts-node ./scripts/generateTypes.ts",
    "lint": "prettier --check src/**/*",
    "test": "jest --verbose",
    "prepack": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ggoodman/json-schema-to-dts.git"
  },
  "keywords": [],
  "author": "Geoffrey Goodman",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ggoodman/json-schema-to-dts/issues"
  },
  "homepage": "https://github.com/ggoodman/json-schema-to-dts#readme",
  "engines": {
    "node": ">=18.12.0"
  },
  "prettier": {
    "printWidth": 100,
    "tabWidth": 2,
    "singleQuote": true
  },
  "volta": {
    "node": "20.12.2",
    "npm": "10.5.2"
  }
}
