{
  "name": "flipclock",
  "version": "1.0.1",
  "description": "A full featured, themeable, type safe, and well tested library for clocks, timers, counters, and flipboards.",
  "license": "MIT",
  "author": "objectivehtml",
  "contributors": [],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/objectivehtml/flipclock.git"
  },
  "homepage": "https://flipclockjs.com",
  "bugs": {
    "url": "https://github.com/objectivehtml/flipclock/issues"
  },
  "files": [
    "dist"
  ],
  "private": false,
  "sideEffects": false,
  "type": "module",
  "main": "./dist/FlipClock.umd.js",
  "module": "./dist/FlipClock.es.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/FlipClock.umd",
      "import": "./dist/FlipClock.es.js",
      "default": "./dist/FlipClock.es.js"
    },
    "./themes/flipclock": {
      "require": "./dist/themes/flipclock.css",
      "import": "./dist/themes/flipclock.css",
      "default": "./dist/themes/flipclock.css"
    }
  },
  "typesVersions": {},
  "lint-staged": {
    "*.{js,jsx,ts,tsx}": [
      "eslint --fix"
    ]
  },
  "dependencies": {
    "date-fns": "^4.1.0",
    "goober": "^2.1.16",
    "solid-js": "^1.9.9"
  },
  "devDependencies": {
    "@changesets/changelog-github": "^0.5.1",
    "@changesets/cli": "^2.29.6",
    "@commitlint/cli": "^19.8.1",
    "@commitlint/config-conventional": "^19.8.1",
    "@types/fs-extra": "^11.0.4",
    "@types/markdown-it": "^14.1.2",
    "@types/node": "^20.19.11",
    "@typescript-eslint/eslint-plugin": "^8.40.0",
    "@typescript-eslint/parser": "^8.40.0",
    "@vitest/coverage-v8": "^3.2.4",
    "@vuepress/bundler-vite": "2.0.0-rc.24",
    "@vuepress/plugin-markdown-include": "2.0.0-rc.112",
    "@vuepress/plugin-prismjs": "2.0.0-rc.112",
    "@vuepress/theme-default": "2.0.0-rc.112",
    "csstype": "^3.1.3",
    "date-fns": "^4.1.0",
    "esbuild": "^0.25.9",
    "eslint": "^8.57.1",
    "eslint-plugin-eslint-comments": "^3.2.0",
    "eslint-plugin-no-only-tests": "^3.3.0",
    "fs-extra": "^11.3.1",
    "goober": "^2.1.16",
    "husky": "^9.1.7",
    "jsdom": "^24.1.3",
    "lint-staged": "^16.1.5",
    "markdown-it": "^14.1.0",
    "markdown-it-async": "^2.2.0",
    "peggy": "^5.0.6",
    "prettier": "^3.6.2",
    "sass": "^1.90.0",
    "solid-js": "^1.9.9",
    "ts-morph": "^26.0.0",
    "tsup": "^8.5.0",
    "tsup-preset-solid": "^2.2.0",
    "typedoc": "^0.28.10",
    "typedoc-plugin-markdown": "^4.8.1",
    "typedoc-vitepress-theme": "^1.1.2",
    "typescript": "^5.9.2",
    "vite": "^7.1.3",
    "vite-plugin-dts": "^4.5.4",
    "vite-plugin-solid": "^2.11.8",
    "vitepress": "2.0.0-alpha.12",
    "vitest": "^3.2.4",
    "vue": "^3.5.19",
    "vuepress": "2.0.0-rc.24"
  },
  "keywords": [
    "flipclock",
    "flipboard",
    "clock",
    "elapsed time",
    "counter"
  ],
  "engines": {
    "node": ">=18",
    "pnpm": ">=9.0.0"
  },
  "scripts": {
    "dev": "vite serve dev",
    "build": "vite build",
    "prebuild": "pnpm vitest --coverage",
    "postbuild": "pnpm tsup && pnpm extract-types && pnpm docs:build",
    "tsup": "tsup --dts-only",
    "test": "vitest",
    "peg": "npx peggy -o ./src/helpers/parser.js format.peg --dts --format es",
    "test:coverage": "vitest --coverage",
    "format": "prettier --ignore-path .gitignore -w \"src/**/*.{js,ts,json,css,tsx,jsx}\" \"dev/**/*.{js,ts,json,css,tsx,jsx}\"",
    "lint": "concurrently pnpm:lint:*",
    "lint:code": "eslint --ignore-path .gitignore --max-warnings 0 src/**/*.{ts,tsx}",
    "lint:types": "tsc --noEmit",
    "update-deps": "pnpm up -Li",
    "docs:dev": "vitepress dev docs",
    "docs:build": "vitepress build docs",
    "docs:preview": "vitepress preview docs",
    "extract-types": "node bin/extractTypes.ts",
    "changeset": "changeset",
    "changeset:version": "changeset version",
    "changeset:publish": "pnpm build && changeset publish"
  }
}