版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 1 година
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. {
  2. "name": "unplugin-vue-macros",
  3. "version": "1.11.2",
  4. "packageManager": "pnpm@7.30.0",
  5. "description": "Explore and extend more macros and syntax sugar to Vue.",
  6. "keywords": [
  7. "vue-macros",
  8. "macros",
  9. "vue",
  10. "sfc",
  11. "setup",
  12. "script-setup",
  13. "macros",
  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/macros"
  25. },
  26. "author": "三咲智子 <sxzz@sxzz.moe>",
  27. "files": [
  28. "dist",
  29. "*.d.ts"
  30. ],
  31. "main": "dist/index.js",
  32. "module": "dist/index.mjs",
  33. "types": "dist/index.d.ts",
  34. "exports": {
  35. ".": {
  36. "dev": "./src/index.ts",
  37. "types": "./dist/index.d.ts",
  38. "require": "./dist/index.js",
  39. "import": "./dist/index.mjs"
  40. },
  41. "./esbuild": {
  42. "dev": "./src/esbuild.ts",
  43. "types": "./dist/esbuild.d.ts",
  44. "require": "./dist/esbuild.js",
  45. "import": "./dist/esbuild.mjs"
  46. },
  47. "./rollup": {
  48. "dev": "./src/rollup.ts",
  49. "types": "./dist/rollup.d.ts",
  50. "require": "./dist/rollup.js",
  51. "import": "./dist/rollup.mjs"
  52. },
  53. "./vite": {
  54. "dev": "./src/vite.ts",
  55. "types": "./dist/vite.d.ts",
  56. "require": "./dist/vite.js",
  57. "import": "./dist/vite.mjs"
  58. },
  59. "./webpack": {
  60. "dev": "./src/webpack.ts",
  61. "types": "./dist/webpack.d.ts",
  62. "require": "./dist/webpack.js",
  63. "import": "./dist/webpack.mjs"
  64. },
  65. "./*": [
  66. "./*",
  67. "./*.d.ts"
  68. ]
  69. },
  70. "typesVersions": {
  71. "<=4.9": {
  72. "*": [
  73. "./dist/*",
  74. "./*"
  75. ]
  76. }
  77. },
  78. "peerDependencies": {
  79. "vue": "^2.7.0 || ^3.2.25"
  80. },
  81. "dependencies": {
  82. "unplugin": "^1.3.1",
  83. "unplugin-combine": "^0.6.0",
  84. "@vue-macros/better-define": "1.5.0",
  85. "@vue-macros/common": "1.1.4",
  86. "@vue-macros/define-model": "1.4.3",
  87. "@vue-macros/define-props": "1.0.2",
  88. "@vue-macros/define-props-refs": "0.3.2",
  89. "@vue-macros/define-render": "1.3.3",
  90. "@vue-macros/define-slots": "0.3.2",
  91. "@vue-macros/devtools": "^0.1.2",
  92. "@vue-macros/export-props": "0.3.2",
  93. "@vue-macros/hoist-static": "1.3.2",
  94. "@vue-macros/named-template": "0.3.3",
  95. "@vue-macros/reactivity-transform": "0.3.3",
  96. "@vue-macros/setup-block": "0.2.2",
  97. "@vue-macros/setup-component": "0.16.3",
  98. "@vue-macros/setup-sfc": "0.15.3",
  99. "@vue-macros/short-emits": "1.3.2",
  100. "@vue-macros/single-define": "^0.1.3",
  101. "unplugin-vue-define-options": "1.3.2"
  102. },
  103. "devDependencies": {
  104. "esbuild": "^0.17.12",
  105. "vue": "^3.2.47"
  106. },
  107. "engines": {
  108. "node": ">=14.19.0"
  109. },
  110. "scripts": {
  111. "build": "tsup && tsx ../../scripts/postbuild.mts",
  112. "dev": "DEV=true tsup"
  113. }
  114. }