{
  "name": "@vgerbot/weather-canvas",
  "version": "0.1.0",
  "description": "A lightweight, high-performance HTML5 Canvas library for rendering dynamic weather effects. Supports various weather conditions, day/night cycles, and adjustable intensities.",
  "keywords": [
    "weather",
    "canvas",
    "animation",
    "effects",
    "rain",
    "snow",
    "clouds",
    "thunderstorm",
    "day-night-cycle",
    "visualization",
    "typescript",
    "web-component",
    "html5-canvas",
    "frontend",
    "ui"
  ],
  "homepage": "https://github.com/vgerbot-libraries/weather-canvas#readme",
  "bugs": {
    "url": "https://github.com/vgerbot-libraries/weather-canvas/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vgerbot-libraries/weather-canvas.git"
  },
  "license": "MIT",
  "author": "ChienHsinYang <y1j2x345@gmail.com>",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "unpkg": "./dist/index.global.js",
  "jsdelivr": "./dist/index.global.js",
  "files": [
    "dist"
  ],
  "lint-staged": {
    "**/*{ts,tsx,json,js,cjs,jsx}": "npx prettier --write"
  },
  "devDependencies": {
    "@babel/preset-env": "^7.23.9",
    "@changesets/changelog-github": "^0.5.1",
    "@changesets/cli": "^2.29.7",
    "@commitlint/cli": "^18.6.0",
    "@commitlint/config-conventional": "^18.6.0",
    "@commitlint/prompt-cli": "^18.6.0",
    "@jest/globals": "^29.7.0",
    "@types/jest": "^29.5.11",
    "@typescript-eslint/eslint-plugin": "^6.19.1",
    "@typescript-eslint/parser": "^6.19.1",
    "domutils": "^3.2.2",
    "eslint": "^8.56.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-prettier": "^5.1.3",
    "htmlparser2": "^10.0.0",
    "husky": "^8.0.3",
    "jest": "^29.7.0",
    "jest-canvas-mock": "^2.5.2",
    "jest-environment-jsdom": "^29.7.0",
    "lint-staged": "^15.2.0",
    "prettier": "^3.2.4",
    "ts-jest": "^29.1.2",
    "ts-node": "^10.9.2",
    "tsup": "^8.0.1",
    "typedoc": "^0.25.7",
    "typescript": "^5.3.3",
    "vite": "^5.0.12",
    "vite-tsconfig-paths": "^4.3.1",
    "whatwg-fetch": "^3.6.20"
  },
  "scripts": {
    "build": "tsup",
    "commit": "commit",
    "dev": "npm run generate-examples && vite",
    "dev:no-gen": "vite",
    "generate-examples": "node scripts/generate-examples-list.mjs",
    "lint": "eslint . -c ./.eslintrc.cjs",
    "format": "eslint ./{src,tests}/**/*.ts -c ./.eslintrc.cjs",
    "test": "jest",
    "tsc": "tsc --noEmit",
    "typedoc": "typedoc ./src  --out ./docs/api --hideGenerator --name ts-library",
    "changeset": "changeset",
    "changeset:version": "changeset version",
    "changeset:publish": "changeset publish"
  }
}