package.json 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "name": "rc-tree-select",
  3. "version": "5.27.0",
  4. "description": "tree-select ui component for react",
  5. "keywords": [
  6. "react",
  7. "react-component",
  8. "react-tree-select",
  9. "tree-select"
  10. ],
  11. "homepage": "https://github.com/react-component/tree-select",
  12. "bugs": {
  13. "url": "https://github.com/react-component/tree-select/issues"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/react-component/tree-select.git"
  18. },
  19. "license": "MIT",
  20. "author": "smith3816@gmail.com",
  21. "main": "./lib/index",
  22. "module": "./es/index",
  23. "files": [
  24. "es",
  25. "lib",
  26. "dist",
  27. "assets/*.less",
  28. "assets/*.css",
  29. "assets/*.png",
  30. "assets/*.gif"
  31. ],
  32. "scripts": {
  33. "build": "dumi build",
  34. "compile": "father build",
  35. "lint": "eslint src/ examples/ --ext .tsx,.ts,.jsx,.js",
  36. "now-build": "npm run build",
  37. "prepare": "husky && dumi setup",
  38. "prepublishOnly": "npm run compile && np --yolo --no-publish --any-branch",
  39. "prettier": "prettier '{src,tests}/**/*.{ts,tsx}' 'tests/**/*.js' --write",
  40. "start": "dumi dev",
  41. "test": "rc-test"
  42. },
  43. "lint-staged": {
  44. "*": "prettier --write --ignore-unknown"
  45. },
  46. "dependencies": {
  47. "@babel/runtime": "^7.25.7",
  48. "classnames": "2.x",
  49. "rc-select": "~14.16.2",
  50. "rc-tree": "~5.13.0",
  51. "rc-util": "^5.43.0"
  52. },
  53. "devDependencies": {
  54. "@rc-component/father-plugin": "^1.1.0",
  55. "@rc-component/trigger": "^1.18.3",
  56. "@testing-library/react": "^12.1.5",
  57. "@types/jest": "^29.5.13",
  58. "@types/node": "^22.7.5",
  59. "@types/react": "^18.3.11",
  60. "@types/react-dom": "^19.0.1",
  61. "@types/warning": "^3.0.3",
  62. "@umijs/fabric": "^4.0.1",
  63. "cheerio": "1.0.0-rc.12",
  64. "cross-env": "^7.0.3",
  65. "dumi": "^2.4.12",
  66. "enzyme": "^3.11.0",
  67. "enzyme-adapter-react-16": "^1.15.8",
  68. "enzyme-to-json": "^3.6.2",
  69. "eslint": "^8.57.1",
  70. "eslint-plugin-jest": "^28.10.0",
  71. "eslint-plugin-unicorn": "^56.0.0",
  72. "father": "^4.5.0",
  73. "glob": "^11.0.0",
  74. "husky": "^9.1.6",
  75. "lint-staged": "^15.2.10",
  76. "np": "^10.0.7",
  77. "prettier": "^3.3.3",
  78. "rc-dialog": "^9.6.0",
  79. "rc-field-form": "^2.4.0",
  80. "rc-test": "^7.1.1",
  81. "rc-virtual-list": "^3.14.8",
  82. "react": "^16.0.0",
  83. "react-dom": "^16.0.0",
  84. "typescript": "^5.6.3"
  85. },
  86. "peerDependencies": {
  87. "react": "*",
  88. "react-dom": "*"
  89. }
  90. }