UNPKG

timescape

Version:

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.

110 lines 2.43 kB
{ "name": "timescape", "license": "MIT", "version": "0.8.0", "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.9", "@preact/signals": "1.3.0", "@testing-library/dom": "10.4.1", "@testing-library/jest-dom": "6.7.0", "@testing-library/user-event": "14.6.1", "@types/react": "18.3.11", "@types/react-dom": "18.3.0", "@vitest/coverage-v8": "3.2.4", "happy-dom": "14.12.3", "preact": "10.24.2", "react": "18.3.1", "react-dom": "18.3.1", "solid-js": "1.9.2", "svelte": "4.2.19", "tsup": "8.5.0", "vitest": "3.2.4", "vue": "3.5.11" }, "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" } }