{
  "name": "ethiopian-calendar-date-converter",
  "description": "Convert dates between Ethiopian and European/Gregorian calendars",
  "version": "2.1.6",
  "keywords": [
    "Calendar Converter",
    "Ethiopian Calendar"
  ],
  "author": "Melaku Zewdu <melaku44@gmail.com>",
  "type": "module",
  "devDependencies": {
    "@vitest/coverage-v8": "3.2.4",
    "dts-bundle-generator": "^9.5.1",
    "eslint": "^9.39.1",
    "prettier": "^3.6.2",
    "typescript": "~5.9.3",
    "vite": "^7.2.2",
    "vitest": "^4.0.10"
  },
  "devEngines": {
    "node": ">=24"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/melaku-z/ethio-european-date-converter.git",
    "directory": "packages/ethiopian-calendar-date-converter"
  },
  "bugs": {
    "url": "https://github.com/melaku-z/ethio-european-date-converter/issues"
  },
  "homepage": "https://github.com/melaku-z/ethio-european-date-converter/tree/master/packages/ethiopian-calendar-date-converter#readme",
  "license": "MIT",
  "main": "./dist/ethiopian-calendar-date-converter.cjs",
  "module": "./dist/ethiopian-calendar-date-converter.mjs",
  "types": "./dist/ethiopian-calendar-date-converter.d.ts",
  "exports": {
    ".": {
      "types": "./dist/ethiopian-calendar-date-converter.d.ts",
      "require": "./dist/ethiopian-calendar-date-converter.cjs",
      "import": "./dist/ethiopian-calendar-date-converter.mjs"
    }
  },
  "scripts": {
    "test": "vitest run",
    "dev": "vite --host",
    "build": "tsc && vite build && dts-bundle-generator --config ./dts-bundle-generator.config.cjs",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "lint:scripts": "eslint . --ext .ts --fix",
    "lint": "pnpm lint:scripts && pnpm format",
    "format": "prettier . --write"
  }
}