package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "@ant-design/cssinjs-utils",
  3. "version": "1.1.3",
  4. "description": "A cssinjs util library to support Ant Design (antd) and its ecosystem libraries.",
  5. "keywords": [
  6. "react",
  7. "cssinjs",
  8. "cssinjs-util",
  9. "antd",
  10. "ant-design"
  11. ],
  12. "homepage": "https://github.com/ant-design/cssinjs-util",
  13. "author": "",
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/ant-design/cssinjs-util.git"
  17. },
  18. "bugs": {
  19. "url": "https://github.com/ant-design/cssinjs-util/issues"
  20. },
  21. "files": [
  22. "es",
  23. "lib",
  24. "dist"
  25. ],
  26. "license": "MIT",
  27. "main": "./lib/index",
  28. "module": "./es/index",
  29. "scripts": {
  30. "start": "dumi dev",
  31. "compile": "father build",
  32. "prepublishOnly": "npm run compile && np --yolo --no-publish",
  33. "lint": "eslint src/ --ext .tsx,.ts,.jsx,.js",
  34. "test": "rc-test",
  35. "coverage": "rc-test --coverage"
  36. },
  37. "devDependencies": {
  38. "@testing-library/jest-dom": "^6.1.4",
  39. "@rc-component/father-plugin": "^1.0.1",
  40. "@testing-library/react": "^16.0.0",
  41. "@types/jest": "^29.5.2",
  42. "@types/node": "^22.0.2",
  43. "@types/react": "^18.0.0",
  44. "@types/react-dom": "^18.0.11",
  45. "@umijs/fabric": "^4.0.1",
  46. "cross-env": "^7.0.1",
  47. "dumi": "^2.1.0",
  48. "eslint": "^8.51.0",
  49. "father": "^4.0.0",
  50. "less": "^4.2.0",
  51. "np": "^10.0.5",
  52. "rc-test": "^7.0.13",
  53. "react": "^18.0.0",
  54. "react-dom": "^18.0.0",
  55. "prettier": "^3.3.3",
  56. "regenerator-runtime": "^0.14.0",
  57. "typescript": "^5.1.6"
  58. },
  59. "dependencies": {
  60. "@ant-design/cssinjs": "^1.21.0",
  61. "@babel/runtime": "^7.23.2",
  62. "rc-util": "^5.38.0"
  63. },
  64. "peerDependencies": {
  65. "react": ">=16.9.0",
  66. "react-dom": ">=16.9.0"
  67. }
  68. }