package.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "name": "react-day-picker",
  3. "version": "8.10.1",
  4. "description": "Customizable Date Picker for React",
  5. "author": "Giampaolo Bellavite <io@gpbl.dev>",
  6. "homepage": "http://react-day-picker.js.org",
  7. "license": "MIT",
  8. "repository": {
  9. "type": "git",
  10. "url": "https://github.com/gpbl/react-day-picker"
  11. },
  12. "bugs": {
  13. "url": "https://github.com/gpbl/react-day-picker/issues"
  14. },
  15. "main": "dist/index.js",
  16. "module": "dist/index.esm.js",
  17. "unpkg": "dist/index.min.js",
  18. "types": "dist/index.d.ts",
  19. "style": "dist/style.css",
  20. "scripts": {
  21. "prepublish": "pnpm build",
  22. "build": "rimraf dist && rollup -c",
  23. "build-watch": "rollup -c -w",
  24. "lint": "eslint .",
  25. "test": "jest",
  26. "test-watch": "jest --watch",
  27. "typecheck": "tsc --project ./tsconfig.json --noEmit",
  28. "typecheck-watch": "tsc --project ./tsconfig.json --noEmit --watch"
  29. },
  30. "files": [
  31. "dist",
  32. "src",
  33. "tsconfig.json"
  34. ],
  35. "devDependencies": {
  36. "@jest/types": "^29.6.3",
  37. "@rollup/plugin-commonjs": "^25.0.7",
  38. "@rollup/plugin-node-resolve": "^15.2.3",
  39. "@rollup/plugin-terser": "^0.4.1",
  40. "@rollup/plugin-typescript": "^11.1.5",
  41. "@testing-library/dom": "^9.3.3",
  42. "@testing-library/jest-dom": "^6.1.5",
  43. "@testing-library/react": "^14.1.2",
  44. "@testing-library/user-event": "^14.5.1",
  45. "@types/jest": "^29.5.11",
  46. "@types/node": "^20.10.5",
  47. "@types/react": "^18.2.45",
  48. "@types/react-dom": "^18.2.18",
  49. "@types/testing-library__jest-dom": "^6.0.0",
  50. "@typescript-eslint/eslint-plugin": "^6.15.0",
  51. "@typescript-eslint/parser": "^6.15.0",
  52. "date-fns": "^3.0.6",
  53. "eslint": "^8.56.0",
  54. "eslint-config-prettier": "^9.1.0",
  55. "eslint-import-resolver-typescript": "^3.6.1",
  56. "eslint-plugin-import": "^2.29.1",
  57. "eslint-plugin-jest": "^27.6.0",
  58. "eslint-plugin-prettier": "^5.1.2",
  59. "eslint-plugin-react-hooks": "^4.6.0",
  60. "eslint-plugin-testing-library": "^6.2.0",
  61. "jest": "^29.7.0",
  62. "jest-environment-jsdom": "^29.7.0",
  63. "mockdate": "^3.0.5",
  64. "postcss": "^8.4.32",
  65. "postcss-d-ts": "^1.2.0",
  66. "postcss-typescript-d-ts": "^1.0.0",
  67. "prettier": "^3.1.1",
  68. "react": "^18.2.0",
  69. "react-classnaming": "^0.16.4",
  70. "react-dom": "^18.2.0",
  71. "rimraf": "^5.0.1",
  72. "rollup": "^4.9.1",
  73. "rollup-plugin-copy": "^3.5.0",
  74. "rollup-plugin-dts": "^6.1.0",
  75. "rollup-plugin-postcss": "^4.0.2",
  76. "ts-jest": "^29.1.1",
  77. "ts-node": "^10.9.2",
  78. "tsc-alias": "^1.8.8",
  79. "tslib": "^2.6.2",
  80. "typescript": "~5.3.3"
  81. },
  82. "peerDependencies": {
  83. "date-fns": "^2.28.0 || ^3.0.0",
  84. "react": "^16.8.0 || ^17.0.0 || ^18.0.0"
  85. },
  86. "funding": {
  87. "type": "individual",
  88. "url": "https://github.com/sponsors/gpbl"
  89. }
  90. }