package.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. {
  2. "name": "@tabler/icons",
  3. "version": "1.99.0",
  4. "description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.",
  5. "repository": {
  6. "type": "git",
  7. "url": "git+https://github.com/tabler/tabler-icons.git"
  8. },
  9. "main": "./icons-react/dist/index.cjs.js",
  10. "exports": {
  11. ".": {
  12. "import": "./icons-react/dist/index.esm.js",
  13. "require": "./icons-react/dist/index.cjs.js"
  14. },
  15. "./*": [
  16. "./icons/*",
  17. "./icons-png/*"
  18. ]
  19. },
  20. "module": "./icons-react/dist/index.esm.js",
  21. "unpkg": "./icons-react/dist/index.umd.js",
  22. "umd:main": "./icons-react/dist/index.umd.js",
  23. "types": "./icons-react/index.d.ts",
  24. "sideEffects": false,
  25. "author": "codecalm",
  26. "license": "MIT",
  27. "homepage": "https://tabler-icons.io",
  28. "bugs": {
  29. "url": "https://github.com/tabler/tabler-icons/issues"
  30. },
  31. "funding": {
  32. "type": "github",
  33. "url": "https://github.com/sponsors/codecalm"
  34. },
  35. "files": [
  36. "tags.json",
  37. "icons/*",
  38. "icons-png/*",
  39. "icons-react/index.d.ts",
  40. "icons-react/dist/*",
  41. "iconfont/*",
  42. "tabler-sprite.svg",
  43. "tabler-sprite-nostroke.svg"
  44. ],
  45. "publishConfig": {
  46. "access": "public"
  47. },
  48. "scripts": {
  49. "start": "bundle exec jekyll serve --watch --livereload --trace --livereload_port 8888",
  50. "prebuild-react": "rm -rf ./icons-react/dist/",
  51. "build-react": "rollup -c",
  52. "optimize": "gulp optimize",
  53. "release": "release-it",
  54. "build": "gulp build",
  55. "build-iconfont": "gulp build-iconfont",
  56. "import": "./_import.sh && gulp optimize"
  57. },
  58. "keywords": [
  59. "icons",
  60. "svg",
  61. "png",
  62. "iconfont",
  63. "react",
  64. "front-end",
  65. "web"
  66. ],
  67. "devDependencies": {
  68. "@babel/core": "7.11.6",
  69. "@babel/parser": "7.11.5",
  70. "@babel/preset-env": "7.11.5",
  71. "@babel/preset-react": "7.10.4",
  72. "@rollup/plugin-babel": "5.2.1",
  73. "@rollup/plugin-commonjs": "15.1.0",
  74. "@rollup/plugin-node-resolve": "9.0.0",
  75. "@svgr/babel-plugin-replace-jsx-attribute-value": "5.0.1",
  76. "@svgr/core": "5.4.0",
  77. "clean-css": "4.2.3",
  78. "csv-parser": "^3.0.0",
  79. "glob": "7.1.6",
  80. "gulp": "4.0.2",
  81. "gulp-iconfont": "11.0.1",
  82. "gulp-svgo": "^2.2.1",
  83. "gulp-zip": "5.1.0",
  84. "lodash.template": "4.5.0",
  85. "minimist": "1.2.6",
  86. "node-sass": "7.0.1",
  87. "parse-svg-path": "^0.1.2",
  88. "release-it": "14.12.5",
  89. "rollup": "2.78.1",
  90. "rollup-plugin-filesize": "9.1.2",
  91. "rollup-plugin-peer-deps-external": "2.2.4",
  92. "rollup-plugin-terser": "7.0.2",
  93. "svg-outline-stroke": "1.3.1",
  94. "svgo": "^2.8.0"
  95. },
  96. "release-it": {
  97. "hooks": {
  98. "after:bump": "gulp build --latest-version ${latestVersion} --new-version ${version} --verbose",
  99. "after:release": "echo Successfully released ${name} v${latestVersion} to ${repo.repository}."
  100. },
  101. "git": {
  102. "addUntrackedFiles": true,
  103. "changelog": "gulp changelog --silent --latest-tag ${latestTag}",
  104. "tagName": "v${version}",
  105. "requireBranch": "master",
  106. "requireCommits": true
  107. },
  108. "github": {
  109. "release": true
  110. }
  111. },
  112. "peerDependencies": {
  113. "react": "^16.x || 17.x || 18.x",
  114. "react-dom": "^16.x || 17.x || 18.x"
  115. },
  116. "peerDependenciesMeta": {
  117. "react": {
  118. "optional": true
  119. },
  120. "react-dom": {
  121. "optional": true
  122. }
  123. }
  124. }