{
  "name": "@agnsu/ts-helpers",
  "version": "2.2.1",
  "description": "TypeScript helper functions that I wanted to exist.",
  "type": "module",
  "main": "build/main/index.js",
  "typings": "build/main/index.d.ts",
  "module": "build/module/index.js",
  "exports": {
    ".": {
      "import": {
        "types": "./build/module/index.d.ts",
        "default": "./build/module/index.js"
      },
      "require": {
        "types": "./build/main/index.d.ts",
        "default": "./build/main/index.js"
      }
    }
  },
  "repository": "https://github.com/AngusLeck/ts-helpers",
  "license": "MIT",
  "keywords": [],
  "scripts": {
    "describe": "npm-scripts-info",
    "build": "run-s clean && run-p build:*",
    "build:main": "tsc -p tsconfig.json && echo '{\"type\":\"commonjs\"}' > build/main/package.json",
    "build:module": "tsc -p tsconfig.module.json",
    "fix": "run-s fix:*",
    "fix:prettier": "prettier \"src/**/*.ts\" --write",
    "fix:lint": "eslint . --fix --max-warnings 0",
    "lint": "run-s lint:*",
    "lint:prettier": "prettier \"src/**/*.ts\" --list-different",
    "lint:eslint": "eslint ./src/**/*.ts --max-warnings 0",
    "lint:typescript": "tsc",
    "test": "jest --passWithNoTests",
    "test:watch": "jest --passWithNoTests --watch",
    "start": "run-s clean build:main && run-p \"build:main -- -w\" \"test:watch\"",
    "version-bump": "standard-version",
    "reset": "git clean -dfx && git reset --hard && yarn",
    "clean": "trash build test",
    "validate": "run-s lint test build",
    "prepare-release": "run-s lint test build version-bump",
    "release": "yarn prepare-release && git push --follow-tags origin main --no-verify && yarn publish --access public --non-interactive"
  },
  "jest": {
    "preset": "ts-jest",
    "testEnvironment": "node",
    "testPathIgnorePatterns": [
      "node_modules",
      "build"
    ],
    "moduleNameMapper": {
      "^(\\.{1,2}/.*)\\.js$": "$1"
    }
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "engines": {
    "node": ">=8.9"
  },
  "devDependencies": {
    "@bitjson/npm-scripts-info": "^1.0.0",
    "codecov": "^3.8.1",
    "cz-conventional-changelog": "^3.3.0",
    "npm-run-all": "^4.1.5",
    "standard-version": "^9.1.0",
    "trash-cli": "^4.0.0",
    "typescript": "^5.0.0",
    "@types/jest": "^27.4.1",
    "@types/node": "^20.0.0",
    "@typescript-eslint/eslint-plugin": "5.13.0",
    "@typescript-eslint/parser": "5.13.0",
    "eslint": "8.10.0",
    "eslint-config-prettier": "8.5.0",
    "eslint-plugin-etc": "^2.0.2",
    "eslint-plugin-prettier": "^5.0.0",
    "jest": "^27.5.1",
    "prettier": "^3.0.0",
    "ts-jest": "^27.1.3",
    "ts-node": "^10.6.0"
  }
}
