package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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.5.0"
  25. },
  26. "version": "6.5.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. "types": "./index.d.ts",
  37. "module": "./index.mjs",
  38. "import": "./index.mjs",
  39. "require": "./index.js",
  40. "style": "./styles.css",
  41. "default": "./index.js"
  42. },
  43. "./index": {
  44. "types": "./index.d.ts",
  45. "module": "./index.mjs",
  46. "import": "./index.mjs",
  47. "require": "./index.js",
  48. "default": "./index.js"
  49. },
  50. "./index.js": {
  51. "types": "./index.d.ts",
  52. "module": "./index.mjs",
  53. "import": "./index.mjs",
  54. "require": "./index.js",
  55. "default": "./index.js"
  56. },
  57. "./plugins": {
  58. "types": "./index.d.ts",
  59. "module": "./plugins.mjs",
  60. "import": "./plugins.mjs",
  61. "default": "./plugins.mjs"
  62. },
  63. "./import.macro": "./import.macro.js",
  64. "./import.macro.js": "./import.macro.js",
  65. "./styles": "./styles.css",
  66. "./styles.css": "./styles.css",
  67. "./package.json": "./package.json"
  68. },
  69. "sideEffects": [
  70. "./index.js",
  71. "./index.mjs",
  72. "./styles.css"
  73. ],
  74. "scripts": {
  75. "postinstall": "node attribution.js"
  76. }
  77. }