{
  "name": "property-helpers",
  "version": "3.0.0",
  "description": "Simple helper functions for working with properties",
  "author": "Hezekiah Hendry <hezekiah.hendry@gmail.com>",
  "license": "MIT",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    "import": "./dist/index.mjs",
    "require": "./dist/index.js",
    "types": "./dist/index.d.ts"
  },
  "scripts": {
    "clean": "rimraf dist node_modules/.cache",
    "docs": "typedoc-json-parser",
    "lint": "eslint src tests --ext ts --fix",
    "format": "prettier --write {src,tests}/**/*.ts",
    "test": "vitest run",
    "test:coverage": "yarn test --coverage",
    "build": "tsup",
    "update": "yarn upgrade-interactive",
    "bump": "cliff-jumper",
    "check-update": "cliff-jumper --dry-run",
    "_postinstall": "husky",
    "prepack": "yarn build && pinst --disable",
    "postpack": "pinst --enable"
  },
  "devDependencies": {
    "@commitlint/cli": "^19.3.0",
    "@commitlint/config-conventional": "^19.2.2",
    "@favware/cliff-jumper": "^4.0.2",
    "@favware/npm-deprecate": "^1.0.7",
    "@sapphire/eslint-config": "^5.0.5",
    "@sapphire/ts-config": "^5.0.1",
    "@types/node": "^20.14.2",
    "@types/rimraf": "^4.0.5",
    "@typescript-eslint/eslint-plugin": "^7.12.0",
    "@typescript-eslint/parser": "^7.12.0",
    "@vitest/coverage-v8": "^1.6.0",
    "eslint": "^8.57.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.1.3",
    "husky": "^9.0.11",
    "lint-staged": "^15.2.5",
    "pinst": "^3.0.0",
    "prettier": "^3.3.1",
    "rimraf": "^5.0.7",
    "tsup": "^8.1.0",
    "typedoc": "^0.25.13",
    "typedoc-json-parser": "^10.0.0",
    "typescript": "^5.4.5",
    "vitest": "^1.6.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/RealShadowNova/property-helpers.git"
  },
  "files": [
    "dist",
    "!dist/*.tsbuildinfo"
  ],
  "engines": {
    "node": ">=20",
    "npm": ">=6"
  },
  "keywords": [],
  "bugs": {
    "url": "https://github.com/RealShadowNova/property-helpers/issues"
  },
  "homepage": "https://github.com/RealShadowNova/property-helpers",
  "publishConfig": {
    "access": "public"
  },
  "lint-staged": {
    "*.ts": "eslint --fix --ext ts"
  }
}