{ "name": "moon-cycle", "version": "2.0.0", "description": "Maps any date to NASA moon phase imagery via synodic and calendar-year cycles. Lightweight npm package — images served via CDN or self-hosted from the GitHub repository.", "author": "Aric Camarata", "license": "MIT", "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "import": { "types": "./dist/index.d.mts", "default": "./dist/index.mjs" }, "require": { "types": "./dist/index.d.ts", "default": "./dist/index.cjs" } } }, "files": [ "dist/", "README.md", "LICENSE", "CHANGELOG.md" ], "sideEffects": false, "scripts": { "build": "tsup", "typecheck": "tsc --noEmit", "pretest": "tsup", "test": "node test.mjs && node test-cjs.cjs", "prepublishOnly": "tsup" }, "engines": { "node": ">=20" }, "keywords": [ "moon", "lunar", "phase", "cycle", "nasa", "synodic", "images", "webp", "astronomy", "calendar", "islamic" ], "repository": { "type": "git", "url": "git+https://github.com/acamarata/moon-cycle.git" }, "homepage": "https://github.com/acamarata/moon-cycle#readme", "bugs": { "url": "https://github.com/acamarata/moon-cycle/issues" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "devDependencies": { "@types/node": "^22.0.0", "tsup": "^8.0.0", "typescript": "^5.0.0" } }