{
  "name": "ts-essentials",
  "version": "10.0.4",
  "description": "All essential TypeScript types in one place",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "repository": "git@github.com:ts-essentials/ts-essentials.git",
  "homepage": "https://github.com/ts-essentials/ts-essentials#readme",
  "author": "Krzysztof Kaczor <chris@kaczor.io>",
  "license": "MIT",
  "scripts": {
    "build": "rimraf ./dist && tsc -p tsconfig.prod.json --outDir ./dist",
    "formatDeclarations": "prettier --ignore-path *.js --write dist/*.d.ts",
    "prepublishOnly": "yarn test && yarn build && yarn formatDeclarations",
    "test": "node scripts/update-test-tsconfig.js && prettier -c {bench,lib,test}/**/*.ts && eslint && tsc --project tsconfig.test.json --outDir ./testDist && rimraf ./testDist",
    "test:fix": "node scripts/update-test-tsconfig.js && prettier --write {bench,lib,test}/**/*.ts && eslint --fix",
    "perf": "tsx ./bench/index.ts --benchErrorOnThresholdExceeded --benchPercentThreshold 1",
    "prerelease": "yarn test",
    "release": "yarn build && yarn formatDeclarations && yarn changeset publish",
    "setTsVersion": "node scripts/sync-ts-version.js"
  },
  "files": [
    "dist"
  ],
  "peerDependencies": {
    "typescript": ">=4.5.0"
  },
  "peerDependenciesMeta": {
    "typescript": {
      "optional": true
    }
  },
  "devDependencies": {
    "@arktype/attest": "^0.8.0",
    "@changesets/cli": "^2.20.0",
    "@codechecks/build-size-watcher": "^0.1.0",
    "@codechecks/client": "^0.1.11",
    "@typescript-eslint/parser": "^8.15.0",
    "conditional-type-checks": "^1.0.4",
    "eslint": "^9.15.0",
    "eslint-plugin-expect-type": "^0.4.3",
    "prettier": "^2.0.0",
    "rimraf": "^3.0.2",
    "semver": "^7.6.3",
    "tsx": "4.10.5",
    "typescript": "^4.5.0"
  },
  "keywords": [
    "typescript",
    "types",
    "essentials",
    "utils",
    "toolbox",
    "toolbelt",
    "lodash",
    "underscore"
  ]
}
