package.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "ionicons",
  3. "version": "7.4.0",
  4. "description": "Premium icons for Ionic.",
  5. "files": [
  6. "components/",
  7. "dist/",
  8. "icons/"
  9. ],
  10. "main": "./dist/index.cjs.js",
  11. "module": "./dist/index.js",
  12. "types": "dist/types/index.d.ts",
  13. "unpkg": "dist/ionicons.js",
  14. "collection": "dist/collection/collection-manifest.json",
  15. "collection:main": "dist/collection/index.js",
  16. "scripts": {
  17. "build": "tsc -p scripts/tsconfig.json && npm run build.files && npm run build.component && npm run collection.copy",
  18. "build.files": "node scripts/build.js",
  19. "build.component": "stencil build",
  20. "collection.copy": "node scripts/collection-copy.js",
  21. "start": "stencil build --dev --watch --serve",
  22. "test": "npm run test.spec",
  23. "test.spec": "stencil test --spec"
  24. },
  25. "dependencies": {
  26. "@stencil/core": "^4.0.3"
  27. },
  28. "devDependencies": {
  29. "@playwright/test": "^1.33.0",
  30. "@types/fs-extra": "^11.0.1",
  31. "@types/jest": "^27.0.3",
  32. "@types/node": "^20.2.1",
  33. "@types/svgo": "^1.3.3",
  34. "fs-extra": "^11.1.1",
  35. "jest": "^27.0.3",
  36. "jest-cli": "^27.0.3",
  37. "lerna": "^6.6.2",
  38. "puppeteer": "^20.2.1",
  39. "semver": "^7.5.1",
  40. "serve": "^14.2.0",
  41. "svgo": "1.3.2",
  42. "typescript": "^5.0.4"
  43. },
  44. "keywords": [
  45. "icon pack",
  46. "ionic",
  47. "icon",
  48. "svg",
  49. "mobile",
  50. "web component",
  51. "component",
  52. "custom element",
  53. "material design",
  54. "ios"
  55. ],
  56. "homepage": "http://ionicons.com/",
  57. "author": {
  58. "name": "Ben Sperry",
  59. "web": "https://twitter.com/benjsperry"
  60. },
  61. "contributors": [
  62. {
  63. "name": "Adam Bradley",
  64. "web": "http://twitter.com/adamdbradley"
  65. }
  66. ],
  67. "repository": {
  68. "type": "git",
  69. "url": "https://github.com/ionic-team/ionicons.git"
  70. },
  71. "bugs": {
  72. "url": "https://github.com/ionic-team/ionicons/issues"
  73. },
  74. "license": "MIT",
  75. "sideEffects": [
  76. "icons/imports/"
  77. ],
  78. "web-types": "dist/ionic.web-types.json"
  79. }