{
  "name": "@magmacomputing/tempo-plugin-astro",
  "version": "2.1.4",
  "description": "Tempo plugin that calculates precise astronomical seasons (solstices & equinoxes) using the Jean Meeus algorithm — hemisphere-aware, sub-minute accuracy",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "license": "MIT",
  "files": [
    "dist",
    "src",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "scripts": {
    "build": "tsup && tsc",
    "test": "cross-env TEMPO_LICENSE_KEY=\"\" vitest run -c ../vitest.shared.ts",
    "prepublishOnly": "if [ $(git rev-parse --abbrev-ref HEAD) != main ]; then echo 'ERROR: Must be on main branch to publish.'; exit 1; fi && npm run build"
  },
  "peerDependencies": {
    "@magmacomputing/tempo": "^3.6.1"
  },
  "tempo": {
    "vendorVariantId": "tempo-plugin-astro",
    "plan": "community"
  },
  "devDependencies": {},
  "keywords": [
    "tempo",
    "tempo-plugin",
    "magmacomputing",
    "temporal",
    "astronomical-seasons",
    "solstice",
    "equinox",
    "vernal-equinox",
    "autumnal-equinox",
    "summer-solstice",
    "winter-solstice",
    "jean-meeus",
    "hemisphere-aware",
    "season",
    "astronomy",
    "date",
    "datetime",
    "typescript"
  ],
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  }
}