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

71 строка
1.6 KiB

  1. {
  2. "version": "0.2.2",
  3. "name": "vite-plugin-vue-meta-layouts",
  4. "description": "vite 的 vue-router 的元信息布局系统",
  5. "main": "./dist/index.cjs",
  6. "module": "./dist/index.mjs",
  7. "types": "./dist/index.d.ts",
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/dishait/vite-plugin-vue-meta-layouts.git"
  11. },
  12. "exports": {
  13. "./*": "./*",
  14. ".": {
  15. "require": "./dist/index.cjs",
  16. "import": "./dist/index.mjs",
  17. "types": "./dist/index.d.ts"
  18. }
  19. },
  20. "files": [
  21. "dist",
  22. "client.d.ts"
  23. ],
  24. "scripts": {
  25. "build": "unbuild",
  26. "dev": "unbuild --stub",
  27. "prepublish": "pnpm build",
  28. "play:dev": "pnpm -C example dev",
  29. "play:build": "pnpm -C example build",
  30. "play:preview": "pnpm -C example preview",
  31. "release": " bumpp --commit --push --tag && npm publish"
  32. },
  33. "keywords": [
  34. "vite",
  35. "plugin",
  36. "template"
  37. ],
  38. "author": {
  39. "email": "1801982702@qq.com",
  40. "name": "markthree",
  41. "url": "https://github.com/markthree"
  42. },
  43. "bugs": {
  44. "email": "1801982702@qq.com",
  45. "url": "https://github.com/dishait/vite-plugin-vue-meta-layouts/issues"
  46. },
  47. "license": "MIT",
  48. "devDependencies": {
  49. "@types/node": "^18.15.11",
  50. "bumpp": "^9.1.0",
  51. "typescript": "^5.0.3",
  52. "unbuild": "^1.2.0",
  53. "vite": "^4.2.1",
  54. "vue-router": "^4.1.6"
  55. },
  56. "peerDependencies": {
  57. "vite": ">=2.0.0",
  58. "vue-router": ">=4.0.14"
  59. },
  60. "pnpm": {
  61. "peerDependencyRules": {
  62. "ignoreMissing": [
  63. "vue"
  64. ]
  65. }
  66. },
  67. "dependencies": {
  68. "local-pkg": "^0.4.3"
  69. }
  70. }