package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "@ant-design/fast-color",
  3. "version": "2.0.6",
  4. "description": "fast and small color class",
  5. "keywords": [
  6. "react",
  7. "react-component",
  8. "react-trigger",
  9. "trigger"
  10. ],
  11. "homepage": "https://github.com/ant-design/fast-color",
  12. "bugs": {
  13. "url": "https://github.com/ant-design/fast-color/issues"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/ant-design/fast-color.git"
  18. },
  19. "license": "MIT",
  20. "author": {
  21. "name": "Guo Yunhe",
  22. "email": "i@guoyunhe.me",
  23. "url": "https://guoyunhe.me/"
  24. },
  25. "main": "./lib/index",
  26. "module": "./es/index",
  27. "files": [
  28. "es",
  29. "lib"
  30. ],
  31. "scripts": {
  32. "bench": "vitest bench",
  33. "build": "dumi build",
  34. "compile": "father build",
  35. "coverage": "rc-test --coverage",
  36. "lint": "eslint src/ tests/ --ext .tsx,.ts,.jsx,.js",
  37. "now-build": "npm run build",
  38. "prepublishOnly": "npm run compile",
  39. "start": "dumi dev",
  40. "test": "rc-test"
  41. },
  42. "dependencies": {
  43. "@babel/runtime": "^7.24.7"
  44. },
  45. "devDependencies": {
  46. "@ctrl/tinycolor": "^4.1.0",
  47. "@rc-component/father-plugin": "^1.0.3",
  48. "@types/jest": "^29.5.12",
  49. "@types/node": "^22.1.0",
  50. "@umijs/fabric": "^4.0.1",
  51. "color2k": "^2.0.3",
  52. "cross-env": "^7.0.3",
  53. "dumi": "^2.3.8",
  54. "eslint": "^8.57.0",
  55. "father": "^4.4.4",
  56. "np": "^10.0.5",
  57. "rc-test": "^7.0.15",
  58. "typescript": "^5.4.5",
  59. "vitest": "^1.6.0"
  60. },
  61. "engines": {
  62. "node": ">=8.x"
  63. }
  64. }