{
  "name": "yup-type-support",
  "version": "1.0.6",
  "description": "A typescript support for yup. Able to infer the yup schema from a typescript interface.",
  "main": "./build/index.js",
  "typings": "./dist/index.d.ts",
  "files": [
    "build/**",
    "!build/tests/**"
  ],
  "scripts": {
    "prepublishOnly": "npm run all",
    "all": "npm run clean; npm run build; npm run test",
    "lint": "eslint ./src/**/* --fix",
    "build": "npm run lint; ttsc",
    "clean": "rm -r build",
    "test": "jest --verbose ./build/tests"
  },
  "homepage": "https://github.com/znAaron/yup-type-support",
  "author": "Zinan Guo",
  "license": "MIT",
  "dependencies": {
    "@znaaron/simple-ts-transform": "^1.1.2",
    "yup": "^0.32.11"
  },
  "devDependencies": {
    "@types/jest": "^28.1.6",
    "@typescript-eslint/eslint-plugin": "^5.31.0",
    "@typescript-eslint/parser": "^5.31.0",
    "eslint": "^8.20.0",
    "eslint-config-google": "^0.14.0",
    "jest": "^28.1.3",
    "ts-jest": "^28.0.7",
    "ttypescript": "^1.5.13",
    "typescript": "^4.7.4"
  }
}
