{
  "name": "@linode/validation",
  "version": "0.63.0",
  "description": "Yup validation schemas for use with the Linode APIv4",
  "type": "module",
  "main": "lib/index.cjs",
  "module": "lib/index.js",
  "exports": {
    ".": {
      "import": "./lib/index.js",
      "require": "./lib/index.cjs"
    },
    "./lib": {
      "import": "./lib/index.js",
      "require": "./lib/index.cjs"
    },
    "./lib/*": {
      "import": "./lib/index.js",
      "require": "./lib/index.cjs"
    }
  },
  "types": "./lib/index.d.ts",
  "browser": "./lib/index.global.js",
  "unpkg": "./lib/index.global.js",
  "files": [
    "lib"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/linode/manager/tree/develop/packages/validation"
  },
  "dependencies": {
    "ipaddr.js": "^2.0.0",
    "libphonenumber-js": "^1.10.6",
    "yup": "^1.4.0"
  },
  "devDependencies": {
    "concurrently": "^9.0.1",
    "eslint": "^6.8.0",
    "eslint-plugin-sonarjs": "^0.5.0",
    "prettier": "~2.2.1",
    "tsup": "^8.4.0"
  },
  "keywords": [
    "linode",
    "api",
    "validation"
  ],
  "lint-staged": {
    "*.{ts,tsx,js}": [
      "prettier --write",
      "eslint --ext .js,.ts,.tsx"
    ],
    ".{ts,tsx}": [
      "tsc -p tsconfig.json --noEmit true --emitDeclarationOnly false"
    ]
  },
  "author": "Linode LLC",
  "license": "Apache-2.0",
  "scripts": {
    "start": "concurrently --raw \"tsc -w --preserveWatchOutput\" \"tsup --watch\"",
    "build": "concurrently --raw \"tsc\" \"tsup\"",
    "lint": "eslint . --quiet --ext .js,.ts,.tsx",
    "typecheck": "tsc --noEmit true --emitDeclarationOnly false"
  }
}