package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "description": "The iconic font, CSS, and SVG framework",
  3. "keywords": [
  4. "font",
  5. "awesome",
  6. "fontawesome",
  7. "icon",
  8. "svg",
  9. "bootstrap"
  10. ],
  11. "homepage": "https://fontawesome.com",
  12. "bugs": {
  13. "url": "https://github.com/FortAwesome/Font-Awesome/issues"
  14. },
  15. "author": "The Font Awesome Team (https://github.com/orgs/FortAwesome/people)",
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/FortAwesome/Font-Awesome"
  19. },
  20. "engines": {
  21. "node": ">=6"
  22. },
  23. "dependencies": {
  24. "@fortawesome/fontawesome-common-types": "6.2.0"
  25. },
  26. "version": "6.2.0",
  27. "name": "@fortawesome/fontawesome-svg-core",
  28. "main": "index.js",
  29. "module": "index.mjs",
  30. "jsnext:main": "index.mjs",
  31. "style": "styles.css",
  32. "license": "MIT",
  33. "types": "./index.d.ts",
  34. "exports": {
  35. ".": {
  36. "module": "./index.mjs",
  37. "import": "./index.mjs",
  38. "require": "./index.js",
  39. "style": "./styles.css",
  40. "default": "./index.js"
  41. },
  42. "./index": {
  43. "module": "./index.mjs",
  44. "import": "./index.mjs",
  45. "require": "./index.js",
  46. "default": "./index.js"
  47. },
  48. "./index.js": {
  49. "module": "./index.mjs",
  50. "import": "./index.mjs",
  51. "require": "./index.js",
  52. "default": "./index.js"
  53. },
  54. "./plugins": {
  55. "module": "./plugins.mjs",
  56. "import": "./plugins.mjs",
  57. "default": "./plugins.mjs"
  58. },
  59. "./import.macro": "./import.macro.js",
  60. "./import.macro.js": "./import.macro.js",
  61. "./styles": "./styles.css",
  62. "./styles.css": "./styles.css",
  63. "./package.json": "./package.json"
  64. },
  65. "sideEffects": [
  66. "./index.js",
  67. "./index.mjs",
  68. "./styles.css"
  69. ],
  70. "scripts": {
  71. "postinstall": "node attribution.js"
  72. }
  73. }