{
  "name": "third-party-capital",
  "version": "3.0.0",
  "description": "",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    }
  },
  "main": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "npx unbuild",
    "prepack": "npm run build",
    "prepare": "husky install",
    "format:check": "prettier --check '**/*.{ts,js}'",
    "lint:check": "eslint '**/*.{ts,js}'",
    "test": "jest",
    "release:major": "npm run build && npm version $(semver $npm_package_version -i major) && npm publish --tag latest && git push",
    "release:minor": "npm run build && npm version $(semver $npm_package_version -i minor) && npm publish --tag latest && git push",
    "release:patch": "npm run build && npm version $(semver $npm_package_version -i patch) && npm publish --tag latest && git push"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/housseindjirdeh/third-party-capital.git"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/housseindjirdeh/third-party-capital/issues"
  },
  "homepage": "https://github.com/housseindjirdeh/third-party-capital#readme",
  "devDependencies": {
    "@types/jest": "^29.5.1",
    "@typescript-eslint/eslint-plugin": "^5.59.5",
    "@typescript-eslint/parser": "^5.59.5",
    "eslint": "^8.40.0",
    "eslint-config-prettier": "^8.8.0",
    "husky": "^8.0.3",
    "jest": "^29.5.0",
    "lint-staged": "^13.2.1",
    "prettier": "2.8.7",
    "ts-jest": "^29.1.0",
    "ts-node": "^10.9.1",
    "typescript": "^5.4.4",
    "unbuild": "^2.0.0"
  },
  "lint-staged": {
    "*.{js,ts}": [
      "eslint --fix",
      "prettier --write --ignore-unknown"
    ]
  },
  "dependencies": {
    "semver": "^7.6.2"
  }
}
