版博士V2.0程序
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

167 satır
4.1 KiB

  1. {
  2. "name": "unplugin-icons",
  3. "version": "0.16.1",
  4. "packageManager": "pnpm@8.0.0",
  5. "description": "Access thousands of icons as components on-demand universally",
  6. "author": "Anthony Fu <anthonyfu117@hotmail.com>",
  7. "license": "MIT",
  8. "funding": "https://github.com/sponsors/antfu",
  9. "homepage": "https://github.com/antfu/unplugin-icons",
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/antfu/unplugin-icons"
  13. },
  14. "bugs": "https://github.com/antfu/unplugin-icons/issues",
  15. "exports": {
  16. ".": {
  17. "types": "./dist/index.d.ts",
  18. "require": "./dist/index.js",
  19. "import": "./dist/index.mjs"
  20. },
  21. "./*": "./*",
  22. "./esbuild": {
  23. "types": "./dist/esbuild.d.ts",
  24. "require": "./dist/esbuild.js",
  25. "import": "./dist/esbuild.mjs"
  26. },
  27. "./loaders": {
  28. "types": "./dist/loaders.d.ts",
  29. "require": "./dist/loaders.js",
  30. "import": "./dist/loaders.mjs"
  31. },
  32. "./nuxt": {
  33. "types": "./dist/nuxt.d.ts",
  34. "require": "./dist/nuxt.js",
  35. "import": "./dist/nuxt.mjs"
  36. },
  37. "./resolver": {
  38. "types": "./dist/resolver.d.ts",
  39. "require": "./dist/resolver.js",
  40. "import": "./dist/resolver.mjs"
  41. },
  42. "./rollup": {
  43. "types": "./dist/rollup.d.ts",
  44. "require": "./dist/rollup.js",
  45. "import": "./dist/rollup.mjs"
  46. },
  47. "./types": {
  48. "types": "./dist/types.d.ts",
  49. "require": "./dist/types.js",
  50. "import": "./dist/types.mjs"
  51. },
  52. "./types/astro": {
  53. "types": "./types/astro.d.ts"
  54. },
  55. "./types/preact": {
  56. "types": "./types/preact.d.ts"
  57. },
  58. "./types/raw": {
  59. "types": "./types/raw.d.ts"
  60. },
  61. "./types/react": {
  62. "types": "./types/react.d.ts"
  63. },
  64. "./types/solid": {
  65. "types": "./types/solid.d.ts"
  66. },
  67. "./types/svelte": {
  68. "types": "./types/svelte.d.ts"
  69. },
  70. "./types/vue": {
  71. "types": "./types/vue.d.ts"
  72. },
  73. "./types/vue3": {
  74. "types": "./types/vue3.d.ts"
  75. },
  76. "./types/web-components": {
  77. "types": "./types/web-components.d.ts"
  78. },
  79. "./vite": {
  80. "types": "./dist/vite.d.ts",
  81. "require": "./dist/vite.js",
  82. "import": "./dist/vite.mjs"
  83. },
  84. "./webpack": {
  85. "types": "./dist/webpack.d.ts",
  86. "require": "./dist/webpack.js",
  87. "import": "./dist/webpack.mjs"
  88. }
  89. },
  90. "main": "dist/index.js",
  91. "module": "dist/index.mjs",
  92. "types": "dist/index.d.ts",
  93. "typesVersions": {
  94. "*": {
  95. "*": [
  96. "./dist/*",
  97. "./*"
  98. ]
  99. }
  100. },
  101. "files": [
  102. "dist",
  103. "types",
  104. "*.d.ts"
  105. ],
  106. "scripts": {
  107. "build": "esno scripts/prebuild.ts && tsup && esno scripts/postbuild.ts",
  108. "dev": "esno scripts/prebuild.ts && tsup --watch src",
  109. "example:build": "npm -C examples/vite-vue3 run build",
  110. "example:dev": "npm -C examples/vite-vue3 run dev",
  111. "lint": "eslint .",
  112. "lint-fix": "eslint . --fix",
  113. "prepublishOnly": "npm run build",
  114. "release": "bumpp && npm publish",
  115. "test": "vitest"
  116. },
  117. "peerDependencies": {
  118. "@svgr/core": ">=7.0.0",
  119. "@vue/compiler-sfc": "^3.0.2 || ^2.7.0",
  120. "vue-template-compiler": "^2.6.12",
  121. "vue-template-es2015-compiler": "^1.9.0"
  122. },
  123. "peerDependenciesMeta": {
  124. "@svgr/core": {
  125. "optional": true
  126. },
  127. "@vue/compiler-sfc": {
  128. "optional": true
  129. },
  130. "vue-template-compiler": {
  131. "optional": true
  132. },
  133. "vue-template-es2015-compiler": {
  134. "optional": true
  135. }
  136. },
  137. "dependencies": {
  138. "@antfu/install-pkg": "^0.1.1",
  139. "@antfu/utils": "^0.7.2",
  140. "@iconify/utils": "^2.1.5",
  141. "debug": "^4.3.4",
  142. "kolorist": "^1.7.0",
  143. "local-pkg": "^0.4.3",
  144. "unplugin": "^1.3.1"
  145. },
  146. "devDependencies": {
  147. "@antfu/eslint-config": "^0.37.0",
  148. "@iconify/json": "^2.2.41",
  149. "@iconify/types": "^2.0.0",
  150. "@svgr/core": "^7.0.0",
  151. "@svgr/plugin-jsx": "^7.0.0",
  152. "@svgx/core": "^1.0.1",
  153. "@types/debug": "^4.1.7",
  154. "@types/node": "^18.15.11",
  155. "@vue/compiler-sfc": "^3.2.47",
  156. "bumpp": "^9.0.0",
  157. "cross-env": "^7.0.3",
  158. "eslint": "^8.37.0",
  159. "esno": "^0.16.3",
  160. "rollup": "^3.20.2",
  161. "tsup": "^6.7.0",
  162. "typescript": "^5.0.2",
  163. "vite": "^4.2.1",
  164. "vitest": "^0.29.8"
  165. }
  166. }