package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@ant-design/colors",
  3. "version": "7.2.1",
  4. "description": "Color palettes calculator of Ant Design",
  5. "homepage": "https://github.com/ant-design/ant-design-colors#readme",
  6. "bugs": {
  7. "url": "https://github.com/ant-design/ant-design-colors/issues"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git+https://github.com/ant-design/ant-design-colors.git"
  12. },
  13. "license": "MIT",
  14. "author": "afc163 <afc163@gmail.com>",
  15. "main": "./lib/index",
  16. "module": "./es/index",
  17. "typings": "es/index.d.ts",
  18. "files": [
  19. "lib",
  20. "es"
  21. ],
  22. "scripts": {
  23. "bench": "vitest bench",
  24. "coverage": "npm test -- --coverage",
  25. "compile": "father build",
  26. "lint": "eslint src --ext .ts",
  27. "prepare": "tsx generate-presets",
  28. "prepublishOnly": "npm run compile && np --no-cleanup --no-publish --branch=antd-5.x",
  29. "prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
  30. "test": "jest"
  31. },
  32. "dependencies": {
  33. "@ant-design/fast-color": "^2.0.6"
  34. },
  35. "devDependencies": {
  36. "@ctrl/tinycolor": "^3.6.1",
  37. "@types/jest": "^26.0.24",
  38. "@types/node": "^20.14.9",
  39. "@umijs/fabric": "^3.0.0",
  40. "eslint": "^7.32.0",
  41. "father": "^4.4.4",
  42. "jest": "^26.6.3",
  43. "np": "^7.7.0",
  44. "prettier": "^2.8.8",
  45. "ts-jest": "^26.5.6",
  46. "tsx": "^4.16.1",
  47. "typescript": "~5.8.2",
  48. "vitest": "^1.6.0"
  49. }
  50. }