package.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. {
  2. "name": "rc-table",
  3. "version": "7.53.1",
  4. "description": "table ui component for react",
  5. "engines": {
  6. "node": ">=8.x"
  7. },
  8. "keywords": [
  9. "react",
  10. "react-table",
  11. "table",
  12. "component",
  13. "ui"
  14. ],
  15. "files": [
  16. "assets/*.css",
  17. "es",
  18. "lib"
  19. ],
  20. "main": "./lib/index",
  21. "module": "./es/index",
  22. "types": "./lib/index.d.ts",
  23. "homepage": "http://github.com/react-component/table",
  24. "maintainers": [
  25. "yiminghe@gmail.com",
  26. "afc163@gmail.com"
  27. ],
  28. "repository": {
  29. "type": "git",
  30. "url": "git@github.com:react-component/table.git"
  31. },
  32. "bugs": {
  33. "url": "http://github.com/react-component/table/issues"
  34. },
  35. "license": "MIT",
  36. "scripts": {
  37. "start": "dumi dev",
  38. "docs:build": "dumi build",
  39. "docs:deploy": "gh-pages -d .doc",
  40. "compile": "father build && lessc assets/index.less assets/index.css",
  41. "deploy": "npm run docs:build && npm run docs:deploy",
  42. "prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
  43. "test": "vitest --watch false",
  44. "coverage": "vitest run --coverage",
  45. "prepublishOnly": "npm run compile && np --no-cleanup --yolo --no-publish --any-branch",
  46. "lint": "eslint src/ --ext .tsx,.ts",
  47. "tsc": "tsc -p tsconfig.json --noEmit",
  48. "now-build": "npm run docs:build",
  49. "prepare": "husky install"
  50. },
  51. "peerDependencies": {
  52. "react": ">=16.9.0",
  53. "react-dom": ">=16.9.0"
  54. },
  55. "dependencies": {
  56. "@babel/runtime": "^7.10.1",
  57. "@rc-component/context": "^1.4.0",
  58. "classnames": "^2.2.5",
  59. "rc-resize-observer": "^1.1.0",
  60. "rc-util": "^5.44.3",
  61. "rc-virtual-list": "^3.14.2"
  62. },
  63. "devDependencies": {
  64. "@rc-component/father-plugin": "^1.0.2",
  65. "@testing-library/jest-dom": "^6.4.0",
  66. "@testing-library/react": "^12.1.5",
  67. "@types/enzyme": "^3.10.5",
  68. "@types/jest": "^29.5.0",
  69. "@types/react": "^18.0.28",
  70. "@types/react-dom": "^18.0.5",
  71. "@types/responselike": "^1.0.0",
  72. "@types/styled-components": "^5.1.32",
  73. "@umijs/fabric": "^4.0.1",
  74. "@vitest/coverage-v8": "^2.0.5",
  75. "cheerio": "1.0.0-rc.12",
  76. "cross-env": "^7.0.0",
  77. "dumi": "^2.1.3",
  78. "enzyme": "^3.1.0",
  79. "enzyme-adapter-react-16": "^1.0.1",
  80. "enzyme-to-json": "^3.1.2",
  81. "eslint": "^8.54.0",
  82. "eslint-plugin-jest": "^28.2.0",
  83. "eslint-plugin-unicorn": "^56.0.0",
  84. "father": "^4.0.0",
  85. "gh-pages": "^6.1.0",
  86. "glob": "^7.1.6",
  87. "husky": "^9.0.11",
  88. "immutability-helper": "^3.0.0",
  89. "jsdom": "^25.0.0",
  90. "less": "^4.1.3",
  91. "lint-staged": "^15.1.0",
  92. "np": "^10.0.1",
  93. "prettier": "^3.1.0",
  94. "rc-animate": "^3.0.0",
  95. "rc-dropdown": "~4.0.1",
  96. "rc-menu": "~9.13.0",
  97. "rc-tooltip": "^6.2.0",
  98. "react": "^16.0.0",
  99. "react-dnd": "^2.5.4",
  100. "react-dnd-html5-backend": "^2.5.4",
  101. "react-dom": "^16.0.0",
  102. "react-resizable": "^3.0.5",
  103. "react-virtualized": "^9.12.0",
  104. "react-window": "^1.8.5",
  105. "regenerator-runtime": "^0.14.0",
  106. "styled-components": "^6.1.1",
  107. "typescript": "~5.7.2",
  108. "vitest": "^2.0.5"
  109. },
  110. "lint-staged": {
  111. "**/*.{js,jsx,tsx,ts,md,json}": [
  112. "prettier --write"
  113. ]
  114. }
  115. }