package.json 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "name": "@ant-design/cssinjs",
  3. "version": "1.24.0",
  4. "description": "Component level cssinjs resolution for antd",
  5. "keywords": [
  6. "react",
  7. "cssinjs",
  8. "antd",
  9. "ant-design"
  10. ],
  11. "main": "./lib/index",
  12. "module": "./es/index",
  13. "files": [
  14. "es",
  15. "lib",
  16. "dist"
  17. ],
  18. "homepage": "https://github.com/ant-design/cssinjs",
  19. "repository": {
  20. "type": "git",
  21. "url": "git@github.com:ant-design/cssinjs.git"
  22. },
  23. "bugs": {
  24. "url": "http://github.com/ant-design/cssinjs/issues"
  25. },
  26. "license": "MIT",
  27. "scripts": {
  28. "start": "dumi dev",
  29. "dev": "father dev",
  30. "docs:build": "dumi build",
  31. "docs:deploy": "gh-pages -d .doc",
  32. "compile": "father build",
  33. "gh-pages": "npm run docs:build && npm run docs:deploy",
  34. "prepublishOnly": "npm run compile && np --yolo --no-publish --any-branch",
  35. "postpublish": "npm run gh-pages",
  36. "lint": "eslint src/ --ext .ts,.tsx,.jsx,.js,.md",
  37. "prettier": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
  38. "pretty-quick": "pretty-quick",
  39. "test": "vitest --watch=false",
  40. "test:watch": "vitest",
  41. "coverage": "vitest run --coverage"
  42. },
  43. "dependencies": {
  44. "@babel/runtime": "^7.11.1",
  45. "@emotion/hash": "^0.8.0",
  46. "@emotion/unitless": "^0.7.5",
  47. "classnames": "^2.3.1",
  48. "csstype": "^3.1.3",
  49. "rc-util": "^5.35.0",
  50. "stylis": "^4.3.4"
  51. },
  52. "devDependencies": {
  53. "@ctrl/tinycolor": "^3.4.0",
  54. "@rc-component/father-plugin": "^1.0.1",
  55. "@testing-library/jest-dom": "^5.16.3",
  56. "@testing-library/react": "^13.0.0",
  57. "@types/classnames": "^2.2.9",
  58. "@types/enzyme": "^3.10.11",
  59. "@types/react": "^18.0.0",
  60. "@types/react-dom": "^18.0.0",
  61. "@types/responselike": "^1.0.0",
  62. "@types/stylis": "^4.0.2",
  63. "@types/testing-library__jest-dom": "^5.14.5",
  64. "@umijs/fabric": "^2.0.8",
  65. "@vitest/coverage-c8": "^0.31.0",
  66. "coveralls": "^3.0.6",
  67. "cross-env": "^7.0.2",
  68. "dumi": "^2.1.13",
  69. "eslint": "^7.0.0",
  70. "father": "^4.0.0",
  71. "gh-pages": "^3.1.0",
  72. "husky": "^4.2.5",
  73. "jsdom": "^22.0.0",
  74. "np": "^7.0.0",
  75. "prettier": "^2.0.5",
  76. "pretty-quick": "^3.0.0",
  77. "react": "^18.0.0",
  78. "react-dom": "^18.0.0",
  79. "typescript": "^4.0.5",
  80. "vitest": "^0.31.0"
  81. },
  82. "peerDependencies": {
  83. "react": ">=16.0.0",
  84. "react-dom": ">=16.0.0"
  85. },
  86. "husky": {
  87. "hooks": {
  88. "pre-commit": "pretty-quick --staged"
  89. }
  90. }
  91. }