easter-date
Version:
Calculate the date of Easter for a given year
47 lines (46 loc) • 983 B
JSON
{
"name": "easter-date",
"version": "1.1.0",
"author": "Roman Ožana <roman@ozana.cz> (https://ozana.cz)",
"repository": "OzzyCzech/easter-date",
"license": "MIT",
"description": "Calculate the date of Easter for a given year",
"keywords": [
"easter",
"date",
"calendar",
"holly week"
],
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"scripts": {
"build": "rm -rf dist && tsc",
"release": "npx np",
"prepare": "npm run build",
"test": "tsc --noEmit && vitest",
"format": "biome check --write .",
"format:check": "biome check .",
"docs": "typedoc"
},
"engines": {
"node": ">=20"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@biomejs/biome": "2.3.6",
"@ozzyczech/tsconfig": "^1.0.0",
"@types/node": "^24.10.1",
"np": "^10.2.0",
"tsx": "^4.20.6",
"typedoc": "^0.28.14",
"typescript": "^5.9.3",
"vitest": "^4.0.10"
}
}