{
  "name": "govph-contributions",
  "version": "1.0.3",
  "description": "Philippine government contributions calculator (SSS, Pag-IBIG, PhilHealth)",
  "author": "Kurt Russelle Marmol <jkurtrussellemarmol@gmail.com>",
  "license": "ISC",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "scripts": {
    "dev": "npx tsx ./examples/basic-usage.ts",
    "dev:all": "npx tsx ./examples/all-contributions.ts",
    "dev:year": "npx tsx ./examples/custom-year.ts",
    "build": "tsc && node ./scripts/copy-data.js",
    "copy:assets": "node ./scripts/copy-data.js",
    "clean": "rm -rf dist",
    "prebuild": "npm run clean",
    "typecheck": "tsc --noEmit",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:ui": "vitest --ui",
    "test:coverage": "vitest run --coverage",
    "check": "npm run typecheck && npm run lint && npm run format:check && npm run test",
    "prepare": "husky"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jkrmarmol/govph-contributions.git"
  },
  "keywords": [
    "philippines",
    "sss",
    "pagibig",
    "pag-ibig",
    "philhealth",
    "contributions",
    "salary",
    "calculator",
    "government",
    "social-security",
    "health-insurance",
    "typescript"
  ],
  "devDependencies": {
    "@eslint/js": "^9.38.0",
    "@vitest/coverage-v8": "^4.0.2",
    "@vitest/ui": "^4.0.2",
    "eslint": "^9.38.0",
    "eslint-config-prettier": "^10.1.8",
    "globals": "^16.4.0",
    "husky": "^9.1.7",
    "jiti": "^2.6.1",
    "lint-staged": "^16.2.6",
    "prettier": "^3.6.2",
    "ts-node": "^10.9.2",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.46.2",
    "vitest": "^4.0.2"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "lint-staged": {
    "*.{ts,js}": [
      "eslint --fix",
      "prettier --write"
    ],
    "*.{json,md,yml,yaml}": [
      "prettier --write"
    ]
  }
}
