package.json 2.8 KB

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