package.json 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "name": "@ant-design/icons",
  3. "version": "5.6.1",
  4. "repository": "https://github.com/ant-design/ant-design-icons/tree/master/packages/icons-react",
  5. "license": "MIT",
  6. "contributors": [
  7. "HeskeyBaozi<hezhiyu233@foxmail.com>",
  8. "vagusX<vagusxl@gmail.com>"
  9. ],
  10. "sideEffects": false,
  11. "main": "./lib/index.js",
  12. "unpkg": "./dist/index.umd.js",
  13. "module": "./es/index.js",
  14. "typings": "./lib/index.d.ts",
  15. "scripts": {
  16. "ci": "NODE_ENV=ci npm run prepublishOnly",
  17. "clean": "./scripts/cleanup.sh",
  18. "compile": "father build",
  19. "postcompile": "npm run clean && TS_NODE_PROJECT=scripts/tsconfig.json node -r ts-node/register scripts/generate.ts --target=entry",
  20. "generate": "rimraf src/icons && TS_NODE_PROJECT=scripts/tsconfig.json node -r ts-node/register scripts/generate.ts --target=icon",
  21. "lint": "eslint src/ --ext .tsx,.ts",
  22. "prepublishOnly": "npm run generate && npm run compile && npm run lint && npm run test",
  23. "start": "dumi dev",
  24. "test": "rc-test",
  25. "test:local": "npm run generate && npm run compile && npm run test"
  26. },
  27. "dependencies": {
  28. "@ant-design/colors": "^7.0.0",
  29. "@ant-design/icons-svg": "^4.4.0",
  30. "@babel/runtime": "^7.24.8",
  31. "classnames": "^2.2.6",
  32. "rc-util": "^5.31.1"
  33. },
  34. "devDependencies": {
  35. "@rc-component/father-plugin": "^1.0.2",
  36. "@swc/core": "^1.3.53",
  37. "@testing-library/react": "^12",
  38. "@types/classnames": "^2.2.9",
  39. "@types/enzyme": "^3.10.3",
  40. "@types/jest": "^24.9.1",
  41. "@types/lodash": "^4.14.136",
  42. "@types/node": "^13.9.3",
  43. "@types/react": "^18.3.3",
  44. "@types/react-dom": "^18.3.0",
  45. "@typescript-eslint/eslint-plugin": "^5.59.7",
  46. "@umijs/fabric": "^3.0.0",
  47. "antd": "^4.8.2",
  48. "cross-env": "^5.2.0",
  49. "dumi": "^1.1.4",
  50. "enzyme": "^3.10.0",
  51. "enzyme-adapter-react-16": "^1.15.7",
  52. "enzyme-to-json": "^3.3.5",
  53. "eslint": "^8.0.0",
  54. "eslint-plugin-jest": "^27.2.1",
  55. "eslint-plugin-react": "^7.32.2",
  56. "eslint-plugin-react-hooks": "^4.6.0",
  57. "eslint-plugin-unicorn": "^47.0.0",
  58. "father": "^4.0.0",
  59. "glob": "^7.1.6",
  60. "history": "^4.9.0",
  61. "lodash": "^4.17.21",
  62. "pkg-dir": "4.0.0",
  63. "prettier": "^2.2.1",
  64. "rc-test": "^7.0.15",
  65. "react": "^16.4.2",
  66. "react-dom": "^16.4.2",
  67. "rimraf": "^3.0.0",
  68. "styled-components": "^3.3.3",
  69. "ts-node": "^8.0.0",
  70. "typescript": "^5.0.0"
  71. },
  72. "peerDependencies": {
  73. "react": ">=16.0.0",
  74. "react-dom": ">=16.0.0"
  75. },
  76. "resolutions": {
  77. "cheerio": "1.0.0-rc.12"
  78. },
  79. "engines": {
  80. "node": ">=8"
  81. },
  82. "publishConfig": {
  83. "access": "public",
  84. "registry": "https://registry.npmjs.org"
  85. }
  86. }