events-calendar
Version:
A flexible, responsive, and feature-rich calendar component for modern React applications.
89 lines (88 loc) • 2.19 kB
JSON
{
"name": "events-calendar",
"version": "2.0.0",
"private": false,
"description": "A flexible, responsive, and feature-rich calendar component for modern React applications.",
"repository": {
"type": "git",
"url": "https://github.com/markshallue/events-calendar.git"
},
"license": "MIT",
"keywords": [
"calendar",
"react-calendar",
"events",
"event-calendar",
"react",
"react-component",
"typescript",
"calendar-component"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./styles.css": "./dist/styles.css"
},
"files": [
"./dist",
"./README.md"
],
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "next dev --turbopack",
"build:package": "rm -rf dist && tsup --config scripts/tsup.esm.ts && tsup --config scripts/tsup.cjs.ts && tsup --config scripts/tsup.dts.ts && postcss package/styles*.css --dir dist",
"build:docs": "next build",
"build": "npm run build:package && npm run build:docs",
"start": "next start",
"lint": "next lint",
"check": "tsc"
},
"peerDependencies": {
"@floating-ui/core": "^1.7.1",
"@floating-ui/react": "^0.27.12",
"@floating-ui/react-dom": "^2.1.3",
"dayjs": "^1.11.13",
"react": ">=18.2",
"react-dom": ">=18.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@mantine/carousel": "^8.1.1",
"@mantine/code-highlight": "^8.1.1",
"@mantine/core": "^8.1.1",
"@mantine/dates": "^8.1.1",
"@mantine/form": "^8.1.1",
"@mantine/hooks": "^8.1.1",
"@tabler/icons-react": "^3.34.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"cssnano": "^7.0.7",
"eslint": "^9",
"eslint-config-next": "15.3.4",
"next": "15.3.4",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"postcss-import": "^16.1.1",
"postcss-modules": "^6.0.1",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.6.1",
"shiki": "^3.7.0",
"tsup": "^8.5.0",
"typescript": "^5"
}
}