package.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. {
  2. "name": "vben-admin-pro",
  3. "version": "5.3.2",
  4. "private": true,
  5. "keywords": [
  6. "monorepo",
  7. "turbo",
  8. "vben",
  9. "vben admin",
  10. "vben pro",
  11. "vue",
  12. "vue admin",
  13. "vue vben admin",
  14. "vue vben admin pro",
  15. "vue3"
  16. ],
  17. "homepage": "https://github.com/vbenjs/vue-vben-admin",
  18. "bugs": "https://github.com/vbenjs/vue-vben-admin/issues",
  19. "repository": "vbenjs/vue-vben-admin.git",
  20. "license": "MIT",
  21. "author": {
  22. "name": "vben",
  23. "email": "ann.vben@gmail.com",
  24. "url": "https://github.com/anncwb"
  25. },
  26. "type": "module",
  27. "scripts": {
  28. "build": "cross-env NODE_OPTIONS=--max-old-space-size=8192 turbo build",
  29. "build:analyze": "turbo build:analyze",
  30. "build:antd": "pnpm run build --filter=@vben/web-antd",
  31. "build:docker": "./build-local-docker-image.sh",
  32. "build:docs": "pnpm run build --filter=@vben/docs",
  33. "build:ele": "pnpm run build --filter=@vben/web-ele",
  34. "build:naive": "pnpm run build --filter=@vben/web-naive",
  35. "build:play": "pnpm run build --filter=@vben/playground",
  36. "build:baicai": "pnpm run build --filter=@vben/baicai",
  37. "changeset": "pnpm exec changeset",
  38. "check": "pnpm run check:circular && pnpm run check:dep && pnpm run check:type && pnpm check:cspell",
  39. "check:circular": "vsh check-circular",
  40. "check:cspell": "cspell lint **/*.ts **/README.md .changeset/*.md --no-progress",
  41. "check:dep": "vsh check-dep",
  42. "check:type": "turbo run typecheck",
  43. "clean": "node ./scripts/clean.mjs",
  44. "commit": "czg",
  45. "dev": "turbo-run dev",
  46. "dev:antd": "pnpm -F @vben/web-antd run dev",
  47. "dev:docs": "pnpm -F @vben/docs run dev",
  48. "dev:ele": "pnpm -F @vben/web-ele run dev",
  49. "dev:naive": "pnpm -F @vben/web-naive run dev",
  50. "dev:play": "pnpm -F @vben/playground run dev",
  51. "dev:baicai": "pnpm -F @vben/baicai run dev",
  52. "format": "vsh lint --format",
  53. "lint": "vsh lint",
  54. "postinstall": "pnpm -r run stub --if-present",
  55. "preinstall": "npx only-allow pnpm",
  56. "prepare": "is-ci || husky",
  57. "preview": "turbo-run preview",
  58. "publint": "vsh publint",
  59. "reinstall": "pnpm clean --del-lock && pnpm install",
  60. "test:unit": "vitest run --dom",
  61. "test:e2e": "turbo run test:e2e",
  62. "update:deps": "pnpm update --latest --recursive",
  63. "version": "pnpm exec changeset version && pnpm install --no-frozen-lockfile"
  64. },
  65. "devDependencies": {
  66. "@changesets/changelog-github": "catalog:",
  67. "@changesets/cli": "catalog:",
  68. "@playwright/test": "catalog:",
  69. "@types/node": "catalog:",
  70. "@vben/commitlint-config": "workspace:*",
  71. "@vben/eslint-config": "workspace:*",
  72. "@vben/prettier-config": "workspace:*",
  73. "@vben/stylelint-config": "workspace:*",
  74. "@vben/tailwind-config": "workspace:*",
  75. "@vben/tsconfig": "workspace:*",
  76. "@vben/turbo-run": "workspace:*",
  77. "@vben/vite-config": "workspace:*",
  78. "@vben/vsh": "workspace:*",
  79. "@vitejs/plugin-vue": "catalog:",
  80. "@vitejs/plugin-vue-jsx": "catalog:",
  81. "@vue/test-utils": "catalog:",
  82. "autoprefixer": "catalog:",
  83. "cross-env": "catalog:",
  84. "cspell": "catalog:",
  85. "happy-dom": "catalog:",
  86. "husky": "catalog:",
  87. "is-ci": "catalog:",
  88. "lint-staged": "catalog:",
  89. "playwright": "catalog:",
  90. "rimraf": "catalog:",
  91. "tailwindcss": "catalog:",
  92. "turbo": "catalog:",
  93. "typescript": "catalog:",
  94. "unbuild": "catalog:",
  95. "vite": "catalog:",
  96. "vitest": "catalog:",
  97. "vue": "catalog:",
  98. "vue-tsc": "catalog:"
  99. },
  100. "engines": {
  101. "node": ">=20.10.0",
  102. "pnpm": ">=9.5.0"
  103. },
  104. "packageManager": "pnpm@9.12.0",
  105. "pnpm": {
  106. "peerDependencyRules": {
  107. "allowedVersions": {
  108. "eslint": "*"
  109. }
  110. },
  111. "overrides": {
  112. "@ctrl/tinycolor": "catalog:",
  113. "clsx": "catalog:",
  114. "pinia": "catalog:",
  115. "vue": "catalog:"
  116. },
  117. "neverBuiltDependencies": [
  118. "canvas",
  119. "node-gyp"
  120. ]
  121. }
  122. }