版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

67 строки
1.5 KiB

  1. {
  2. "name": "@vue-macros/common",
  3. "version": "1.1.4",
  4. "packageManager": "pnpm@7.30.0",
  5. "description": "common feature from Vue Macros.",
  6. "keywords": [
  7. "vue-macros",
  8. "macros",
  9. "vue",
  10. "sfc",
  11. "setup",
  12. "script-setup",
  13. "common"
  14. ],
  15. "license": "MIT",
  16. "homepage": "https://github.com/sxzz/unplugin-vue-macros#readme",
  17. "bugs": {
  18. "url": "https://github.com/sxzz/unplugin-vue-macros/issues"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "git+https://github.com/sxzz/unplugin-vue-macros.git",
  23. "directory": "packages/common"
  24. },
  25. "author": "三咲智子 <sxzz@sxzz.moe>",
  26. "files": [
  27. "dist"
  28. ],
  29. "main": "./dist/index.js",
  30. "module": "./dist/index.mjs",
  31. "types": "./dist/index.d.ts",
  32. "exports": {
  33. ".": {
  34. "dev": "./src/index.ts",
  35. "types": "./dist/index.d.ts",
  36. "require": "./dist/index.js",
  37. "import": "./dist/index.mjs"
  38. },
  39. "./*": "./*"
  40. },
  41. "peerDependencies": {
  42. "vue": "^2.7.0 || ^3.2.25"
  43. },
  44. "peerDependenciesMeta": {
  45. "vue": {
  46. "optional": true
  47. }
  48. },
  49. "dependencies": {
  50. "@babel/types": "^7.21.3",
  51. "@rollup/pluginutils": "^5.0.2",
  52. "@vue/compiler-sfc": "^3.2.47",
  53. "local-pkg": "^0.4.3",
  54. "magic-string-ast": "^0.1.2"
  55. },
  56. "devDependencies": {
  57. "@babel/parser": "^7.21.3",
  58. "estree-walker": "^3.0.3"
  59. },
  60. "engines": {
  61. "node": ">=14.19.0"
  62. },
  63. "scripts": {
  64. "build": "tsup && tsx ../../scripts/postbuild.mts",
  65. "dev": "DEV=true tsup"
  66. }
  67. }