dayjs-plugin-time-interval
Version:
A Dayjs plugin to add support for time intervals
68 lines • 1.65 kB
JSON
{
"$schema": "https://json.schemastore.org/package.json",
"name": "dayjs-plugin-time-interval",
"author": "ej-shafran",
"license": "MIT",
"version": "0.0.2",
"description": "A Dayjs plugin to add support for time intervals",
"keywords": [
"dayjs",
"dayjs plugin",
"iso8601",
"time interval",
"timeslot",
"dates",
"date range"
],
"files": [
"dist",
"LICENSE",
"CHANGELOG.md"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@changesets/cli": "^2.29.5",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/types": "^19.8.1",
"@eslint/js": "^9.31.0",
"@fast-check/vitest": "^0.2.2",
"dayjs": "^1.11.13",
"eslint": "^9.31.0",
"fast-check": "^4.2.0",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.37.0",
"vitest": "^3.2.4"
},
"peerDependencies": {
"dayjs": "^1"
},
"scripts": {
"test": "vitest",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"build": "tsup",
"check-types": "tsc --noEmit",
"check-exports": "npm run build && attw --pack",
"release": "npm run build && changeset publish"
}
}