{
  "name": "@zamiru/timescape",
  "license": "MIT",
  "version": "0.5.1",
  "description": "A flexible, headless date and time input library for JavaScript. Provides tools for building fully customizable date and time input fields, with support for libraries like React, Preact, Vue, Svelte and Solid.",
  "repository": "https://github.com/dan-lee/timescape",
  "bugs": "https://github.com/dan-lee/timescape/issues",
  "type": "module",
  "publishConfig": {
    "access": "public"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./*": {
      "import": "./dist/*.js",
      "require": "./dist/*.cjs"
    },
    "./chunk-*": null
  },
  "typesVersions": {
    "*": {
      "*": [
        "./dist/*.d.ts"
      ]
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "devDependencies": {
    "@microsoft/api-extractor": "7.47.6",
    "@preact/signals": "1.2.3",
    "@testing-library/dom": "10.4.0",
    "@testing-library/jest-dom": "6.4.8",
    "@testing-library/user-event": "14.5.2",
    "@types/react": "^18.3.3",
    "@types/react-dom": "^18.3.0",
    "@vitest/coverage-v8": "2.0.5",
    "happy-dom": "^14.12.3",
    "preact": "10.22.0",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "solid-js": "1.8.17",
    "svelte": "4.2.17",
    "tsup": "^8.2.4",
    "vitest": "2.0.5",
    "vue": "3.4.27"
  },
  "peerDependencies": {
    "@preact/signals": "1.x",
    "preact": "10.x",
    "react": ">=17",
    "react-dom": ">=17",
    "solid-js": ">=1",
    "svelte": "3.x",
    "vue": "3.x"
  },
  "peerDependenciesMeta": {
    "@preact/signals": {
      "optional": true
    },
    "preact": {
      "optional": true
    },
    "react": {
      "optional": true
    },
    "react-dom": {
      "optional": true
    },
    "solid-js": {
      "optional": true
    },
    "svelte": {
      "optional": true
    },
    "vue": {
      "optional": true
    }
  },
  "keywords": [
    "date",
    "time",
    "datetime",
    "input",
    "headless",
    "a11y",
    "customizable",
    "flexible",
    "date-time-management",
    "typescript",
    "vanilla-js",
    "react",
    "preact",
    "vue",
    "svelte",
    "solid"
  ],
  "scripts": {
    "test": "vitest",
    "typecheck": "tsc --noEmit",
    "build": "tsup",
    "generate:demo-types": "tsc --declaration --emitDeclarationOnly --skipLibCheck --noEmit false && api-extractor run ; rm -rf dist"
  }
}