@ipohjs/calendar
Version:
Minimal module to compute a calendar
103 lines • 3.17 kB
JSON
{
"name": "@ipohjs/calendar",
"version": "0.1.0-rc.8",
"description": "Minimal module to compute a calendar",
"keywords": [
"calendar",
"ipoh",
"ipohjs",
"webmod"
],
"homepage": "https://github.com/ipohjs/webmod/packages/calendar",
"bugs": {
"url": "https://github.com/ipohjs/webmod/issues"
},
"repository": {
"type": "git",
"url": "git@github.com:ipohjs/webmod.git"
},
"funding": "https://github.com/ipohjs/webmod?sponsor=1",
"license": "MIT",
"author": {
"name": "@ipohjs/core-team",
"email": "contact@ipoh.dev",
"url": "https://github.com/orgs/ipohjs/teams/core-team"
},
"type": "module",
"exports": {
".": {
"types": "./dist/calendar.d.ts",
"import": "./dist/calendar.js",
"default": "./dist/calendar.js"
},
"./from-parts-to-utc-date": {
"types": "./dist/helpers/from-parts-to-utc-date.d.ts",
"import": "./dist/helpers/from-parts-to-utc-date.js",
"default": "./dist/helpers/from-parts-to-utc-date.js"
},
"./get-formatter": {
"types": "./dist/helpers/get-formatter.d.ts",
"import": "./dist/helpers/get-formatter.js",
"default": "./dist/helpers/get-formatter.js"
},
"./get-week-number": {
"types": "./dist/helpers/get-week-number.d.ts",
"import": "./dist/helpers/get-week-number.js",
"default": "./dist/helpers/get-week-number.js"
},
"./get-weekdays": {
"types": "./dist/helpers/get-weekdays.d.ts",
"import": "./dist/helpers/get-weekdays.js",
"default": "./dist/helpers/get-weekdays.js"
},
"./normalize-weekday": {
"types": "./dist/helpers/normalize-weekday.d.ts",
"import": "./dist/helpers/normalize-weekday.js",
"default": "./dist/helpers/normalize-weekday.js"
},
"./to-day-difference-inclusive": {
"types": "./dist/helpers/to-day-difference-inclusive.d.ts",
"import": "./dist/helpers/to-day-difference-inclusive.js",
"default": "./dist/helpers/to-day-difference-inclusive.js"
},
"./to-utc-date": {
"types": "./dist/helpers/to-utc-date.d.ts",
"import": "./dist/helpers/to-utc-date.js",
"default": "./dist/helpers/to-utc-date.js"
},
"./to-valid-weekday": {
"types": "./dist/helpers/to-valid-weekday.d.ts",
"import": "./dist/helpers/to-valid-weekday.js",
"default": "./dist/helpers/to-valid-weekday.js"
},
"./dist/helpers/*": "./dist/helpers/*",
"./dist/*": "./dist/*"
},
"main": "dist/calendar.js",
"module": "./dist/calendar.js",
"types": "./dist/calendar.d.ts",
"typings": "dist/calendar.d.ts",
"files": [
"dist/*.*js.map",
"dist/*.*js",
"dist/*.d.ts.map",
"dist/*.d.ts",
"dist/helpers/*.*js.map",
"dist/helpers/*.*js",
"dist/helpers/*.d.ts.map",
"dist/helpers/*.d.ts",
"!**/*bench*/**/*.*",
"!**/*test*/**/*.*"
],
"publishConfig": {
"access": "public"
},
"readme": "https://github.com/ipohjs/webmod/packages/calendar/README.md",
"devDependencies": {
"dayjs": "^1.11.10"
},
"scripts": {
"clean": "rm -rf dist/",
"pre-commit": "sh ../../scripts/pre-commit.sh"
}
}