版博士V2.0程序
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

88 wiersze
2.0 KiB

  1. {
  2. "name": "@vue-macros/hoist-static",
  3. "version": "1.3.2",
  4. "packageManager": "pnpm@7.30.0",
  5. "description": "hoist-static feature from Vue Macros.",
  6. "keywords": [
  7. "vue-macros",
  8. "macros",
  9. "vue",
  10. "sfc",
  11. "setup",
  12. "script-setup",
  13. "hoist-static",
  14. "unplugin"
  15. ],
  16. "license": "MIT",
  17. "homepage": "https://github.com/sxzz/unplugin-vue-macros#readme",
  18. "bugs": {
  19. "url": "https://github.com/sxzz/unplugin-vue-macros/issues"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "git+https://github.com/sxzz/unplugin-vue-macros.git",
  24. "directory": "packages/hoist-static"
  25. },
  26. "author": "三咲智子 <sxzz@sxzz.moe>",
  27. "files": [
  28. "dist"
  29. ],
  30. "main": "dist/index.js",
  31. "module": "dist/index.mjs",
  32. "types": "dist/index.d.ts",
  33. "exports": {
  34. ".": {
  35. "dev": "./src/index.ts",
  36. "types": "./dist/index.d.ts",
  37. "require": "./dist/index.js",
  38. "import": "./dist/index.mjs"
  39. },
  40. "./esbuild": {
  41. "dev": "./src/esbuild.ts",
  42. "types": "./dist/esbuild.d.ts",
  43. "require": "./dist/esbuild.js",
  44. "import": "./dist/esbuild.mjs"
  45. },
  46. "./rollup": {
  47. "dev": "./src/rollup.ts",
  48. "types": "./dist/rollup.d.ts",
  49. "require": "./dist/rollup.js",
  50. "import": "./dist/rollup.mjs"
  51. },
  52. "./vite": {
  53. "dev": "./src/vite.ts",
  54. "types": "./dist/vite.d.ts",
  55. "require": "./dist/vite.js",
  56. "import": "./dist/vite.mjs"
  57. },
  58. "./webpack": {
  59. "dev": "./src/webpack.ts",
  60. "types": "./dist/webpack.d.ts",
  61. "require": "./dist/webpack.js",
  62. "import": "./dist/webpack.mjs"
  63. },
  64. "./*": [
  65. "./*",
  66. "./*.d.ts"
  67. ]
  68. },
  69. "typesVersions": {
  70. "<=4.9": {
  71. "*": [
  72. "./dist/*",
  73. "./*"
  74. ]
  75. }
  76. },
  77. "dependencies": {
  78. "unplugin": "^1.3.1",
  79. "@vue-macros/common": "~1.1.4"
  80. },
  81. "engines": {
  82. "node": ">=14.19.0"
  83. },
  84. "scripts": {
  85. "build": "tsup && tsx ../../scripts/postbuild.mts",
  86. "dev": "DEV=true tsup"
  87. }
  88. }