package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "rc-virtual-list",
  3. "version": "3.19.2",
  4. "description": "React Virtual List Component",
  5. "engines": {
  6. "node": ">=8.x"
  7. },
  8. "keywords": [
  9. "react",
  10. "react-component",
  11. "virtual-list"
  12. ],
  13. "homepage": "https://github.com/react-component/virtual-list",
  14. "author": "smith3816@gmail.com",
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/react-component/virtual-list.git"
  18. },
  19. "bugs": {
  20. "url": "https://github.com/react-component/virtual-list/issues"
  21. },
  22. "files": [
  23. "lib",
  24. "es",
  25. "assets"
  26. ],
  27. "license": "MIT",
  28. "main": "./lib/index",
  29. "module": "./es/index",
  30. "scripts": {
  31. "start": "dumi dev",
  32. "build": "dumi build",
  33. "compile": "father build",
  34. "prepublishOnly": "npm run compile && np --no-cleanup --yolo --no-publish",
  35. "lint": "eslint src/ --ext .tsx,.ts",
  36. "test": "rc-test",
  37. "now-build": "npm run build"
  38. },
  39. "peerDependencies": {
  40. "react": ">=16.9.0",
  41. "react-dom": ">=16.9.0"
  42. },
  43. "devDependencies": {
  44. "@rc-component/father-plugin": "^1.0.2",
  45. "@testing-library/jest-dom": "^5.17.0",
  46. "@testing-library/react": "^12.1.5",
  47. "@types/classnames": "^2.2.10",
  48. "@types/enzyme": "^3.10.5",
  49. "@types/jest": "^25.1.3",
  50. "@types/react": "^18.0.8",
  51. "@types/react-dom": "^18.0.3",
  52. "@types/warning": "^3.0.0",
  53. "cheerio": "1.0.0-rc.12",
  54. "cross-env": "^5.2.0",
  55. "dumi": "^2.2.17",
  56. "enzyme": "^3.1.0",
  57. "enzyme-adapter-react-16": "^1.15.6",
  58. "enzyme-to-json": "^3.1.4",
  59. "eslint": "^8.56.0",
  60. "eslint-plugin-unicorn": "^55.0.0",
  61. "father": "^4.4.0",
  62. "glob": "^7.1.6",
  63. "np": "^7.5.0",
  64. "rc-animate": "^2.9.1",
  65. "rc-test": "^7.0.15",
  66. "react": "16.14.0",
  67. "react-dom": "16.14.0",
  68. "typescript": "^5.0.0"
  69. },
  70. "dependencies": {
  71. "@babel/runtime": "^7.20.0",
  72. "classnames": "^2.2.6",
  73. "rc-resize-observer": "^1.0.0",
  74. "rc-util": "^5.36.0"
  75. }
  76. }