package.json 3.4 KB

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