UNPKG

react-calendar-full

Version:

A full-featured React calendar component with event scheduling and monthly, weekly, and daily views.

69 lines (68 loc) 2.19 kB
{ "name": "react-calendar-full", "version": "0.3.0", "description": "A full-featured React calendar component with event scheduling and monthly, weekly, and daily views.", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "umd:main": "dist/umd/index.js", "types": "dist/types/index.d.js", "files": [ "dist/cjs/**", "dist/esm/**", "dist/types/**", "dist/umd/**" ], "scripts": { "build": "npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:types && npm run build:demo", "build:cjs": "tsc -p tsconfig.cjs.json && cp ./src/calendar.css ./dist/cjs/", "build:esm": "tsc -p tsconfig.esm.json && cp ./src/calendar.css ./dist/esm/", "build:umd": "webpack --mode production", "build:types": "tsc -p tsconfig.types.json", "build:demo": "webpack --config webpack.demo.config.js --mode production && cp demo/index.html dist/demo", "clean": "node bin/clean.js", "clean:build": "npm run clean && npm run build", "format": "eslint --ext js,ts,tsx src --fix && prettier --write \"src/**/*.{ts,tsx}\"", "lint": "eslint 'src/**/*.{js,ts,tsx}'" }, "repository": { "type": "git", "url": "git+https://github.com/jonmbake/react-calendar-full.git" }, "keywords": [ "React", "Calendar", "Component", "Events", "Week", "Month", "Day" ], "author": "Jon Bake", "license": "MIT", "bugs": { "url": "https://github.com/jonmbake/react-calendar-full/issues" }, "homepage": "https://github.com/jonmbake/react-calendar-full#readme", "devDependencies": { "@typescript-eslint/eslint-plugin": "^6.9.1", "@typescript-eslint/parser": "^6.9.1", "css-loader": "^6.8.1", "eslint": "^8.52.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-prettier": "^5.0.1", "prettier": "^3.0.3", "style-loader": "^3.3.3", "ts-loader": "^9.5.0", "typescript": "^5.2.2", "webpack": "^5.89.0", "webpack-cli": "^5.1.4" }, "dependencies": { "@types/node": "^20.8.9", "@types/react": "^18.2.33", "@types/react-dom": "^18.2.14", "bootstrap": "^5.3.2", "react": "^18.2.0", "react-dom": "^18.2.0" } }