{
  "name": "@sapphire/shapeshift",
  "version": "3.7.0",
  "description": "Blazing fast input validation and transformation ⚡",
  "author": "@sapphire",
  "license": "MIT",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "browser": "dist/index.global.js",
  "unpkg": "dist/index.global.js",
  "types": "dist/index.d.ts",
  "exports": {
    "import": "./dist/index.mjs",
    "require": "./dist/index.js",
    "types": "./dist/index.d.ts"
  },
  "sideEffects": false,
  "homepage": "https://www.sapphirejs.dev",
  "scripts": {
    "lint": "eslint src tests --ext ts --fix",
    "format": "prettier --write \"{src,tests}/**/*.ts\"",
    "docs": "typedoc-json-parser",
    "test": "vitest run",
    "test:watch": "vitest",
    "update": "yarn upgrade-interactive",
    "build": "tsup",
    "clean": "node scripts/clean.mjs",
    "typecheck": "tsc -p tsconfig.eslint.json",
    "bump": "cliff-jumper",
    "check-update": "cliff-jumper --dry-run",
    "_postinstall": "husky install .github/husky",
    "prepack": "yarn build && pinst --disable",
    "postpack": "pinst --enable"
  },
  "devDependencies": {
    "@commitlint/cli": "^17.1.2",
    "@commitlint/config-conventional": "^17.1.0",
    "@favware/cliff-jumper": "^1.8.7",
    "@favware/npm-deprecate": "^1.0.5",
    "@sapphire/eslint-config": "^4.3.8",
    "@sapphire/prettier-config": "^1.4.4",
    "@sapphire/ts-config": "^3.3.4",
    "@types/jsdom": "^20.0.0",
    "@types/lodash.uniqwith": "^4.5.7",
    "@types/node": "^18.7.13",
    "@typescript-eslint/eslint-plugin": "^5.38.1",
    "@typescript-eslint/parser": "^5.38.1",
    "@vitest/coverage-c8": "^0.23.4",
    "cz-conventional-changelog": "^3.3.0",
    "esbuild-plugins-node-modules-polyfill": "^1.0.5",
    "eslint": "^8.24.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-prettier": "^4.2.1",
    "husky": "^8.0.1",
    "jsdom": "^20.0.1",
    "lint-staged": "^13.0.3",
    "pinst": "^3.0.0",
    "prettier": "^2.7.1",
    "pretty-quick": "^3.1.3",
    "ts-node": "^10.9.1",
    "tsup": "^6.2.3",
    "typedoc": "^0.23.15",
    "typedoc-json-parser": "^5.0.1",
    "typescript": "^4.8.4",
    "vitest": "^0.23.4"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sapphiredev/shapeshift.git"
  },
  "files": [
    "dist/**/*.js*",
    "dist/**/*.mjs*",
    "dist/**/*.d*"
  ],
  "engines": {
    "node": ">=v14.0.0",
    "npm": ">=7.0.0"
  },
  "keywords": [
    "@sapphire/shapeshift",
    "shapeshift",
    "bot",
    "typescript",
    "ts",
    "yarn",
    "sapphire",
    "schema",
    "validation",
    "type-checking",
    "checking",
    "input-validation",
    "runtime-validation",
    "ow",
    "type-validation",
    "zod"
  ],
  "bugs": {
    "url": "https://github.com/sapphiredev/shapeshift/issues"
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "lint-staged": {
    "*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "resolutions": {
    "ansi-regex": "^5.0.1",
    "minimist": "^1.2.6"
  },
  "prettier": "@sapphire/prettier-config",
  "packageManager": "yarn@3.2.3",
  "dependencies": {
    "fast-deep-equal": "^3.1.3",
    "lodash.uniqwith": "^4.5.0"
  }
}