moon-sighting/package.json

97 lines
2.6 KiB
JSON

{
"name": "moon-sighting",
"version": "1.1.2",
"description": "High-accuracy lunar crescent visibility and moon sighting calculations using JPL DE442S ephemerides. Implements Yallop and Odeh criteria for Islamic crescent sighting workflows.",
"author": "Aric Camarata",
"license": "MIT",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"bin": {
"moon-sighting": "dist/cli/index.cjs"
},
"sideEffects": false,
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"postbuild": "cp dist/index.d.ts dist/index.d.mts",
"typecheck": "tsc --noEmit",
"pretest": "pnpm run build",
"test": "node --test test.mjs && node --test test-cjs.cjs",
"lint": "eslint src/",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"prepack": "pnpm run build",
"cli": "node dist/cli/index.cjs",
"coverage": "c8 --reporter=lcov --reporter=text node test.mjs",
"docs": "typedoc --out .github/wiki/api src/index.ts"
},
"devDependencies": {
"@acamarata/eslint-config": "^0.1.0",
"c8": "^10.1.3",
"@acamarata/prettier-config": "^0.1.0",
"@acamarata/tsconfig": "^0.1.0",
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "^4.11.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acamarata/moon-sighting.git"
},
"homepage": "https://github.com/acamarata/moon-sighting#readme",
"bugs": {
"url": "https://github.com/acamarata/moon-sighting/issues"
},
"keywords": [
"moon",
"lunar",
"crescent",
"moon-sighting",
"hilal",
"yallop",
"odeh",
"islamic",
"ephemeris",
"jpl",
"de442s",
"astronomy",
"moon-phase",
"visibility",
"sighting",
"ramadan",
"prayer-times"
],
"type": "module",
"packageManager": "pnpm@10.11.1",
"prettier": "@acamarata/prettier-config"
}