package.json 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. {
  2. "name": "vben-admin-monorepo",
  3. "version": "5.5.4",
  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": "./scripts/deploy/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. "changeset": "pnpm exec changeset",
  37. "check": "pnpm run check:circular && pnpm run check:dep && pnpm run check:type && pnpm check:cspell",
  38. "check:circular": "vsh check-circular",
  39. "check:cspell": "cspell lint **/*.ts **/README.md .changeset/*.md --no-progress",
  40. "check:dep": "vsh check-dep",
  41. "check:type": "turbo run typecheck",
  42. "clean": "node ./scripts/clean.mjs",
  43. "commit": "czg",
  44. "dev": "turbo-run dev",
  45. "dev:antd": "pnpm -F @vben/web-antd run dev",
  46. "dev:docs": "pnpm -F @vben/docs run dev",
  47. "dev:ele": "pnpm -F @vben/web-ele run dev",
  48. "dev:naive": "pnpm -F @vben/web-naive run dev",
  49. "dev:play": "pnpm -F @vben/playground run dev",
  50. "format": "vsh lint --format",
  51. "lint": "vsh lint",
  52. "postinstall": "pnpm -r run stub --if-present",
  53. "preinstall": "npx only-allow pnpm",
  54. "prepare": "is-ci || husky",
  55. "preview": "turbo-run preview",
  56. "publint": "vsh publint",
  57. "reinstall": "pnpm clean --del-lock && pnpm install",
  58. "test:unit": "vitest run --dom",
  59. "test:e2e": "turbo run test:e2e",
  60. "update:deps": "npx taze -r -w",
  61. "version": "pnpm exec changeset version && pnpm install --no-frozen-lockfile"
  62. },
  63. "devDependencies": {
  64. "@changesets/changelog-github": "catalog:",
  65. "@changesets/cli": "catalog:",
  66. "@playwright/test": "catalog:",
  67. "@types/node": "catalog:",
  68. "@vben/commitlint-config": "workspace:*",
  69. "@vben/eslint-config": "workspace:*",
  70. "@vben/prettier-config": "workspace:*",
  71. "@vben/stylelint-config": "workspace:*",
  72. "@vben/tailwind-config": "workspace:*",
  73. "@vben/tsconfig": "workspace:*",
  74. "@vben/turbo-run": "workspace:*",
  75. "@vben/vite-config": "workspace:*",
  76. "@vben/vsh": "workspace:*",
  77. "@vitejs/plugin-vue": "catalog:",
  78. "@vitejs/plugin-vue-jsx": "catalog:",
  79. "@vue/test-utils": "catalog:",
  80. "autoprefixer": "catalog:",
  81. "cross-env": "catalog:",
  82. "cspell": "catalog:",
  83. "happy-dom": "catalog:",
  84. "husky": "catalog:",
  85. "is-ci": "catalog:",
  86. "lint-staged": "catalog:",
  87. "playwright": "catalog:",
  88. "rimraf": "catalog:",
  89. "tailwindcss": "catalog:",
  90. "turbo": "catalog:",
  91. "typescript": "catalog:",
  92. "unbuild": "catalog:",
  93. "vite": "catalog:",
  94. "vitest": "catalog:",
  95. "vue": "catalog:",
  96. "vue-tsc": "catalog:"
  97. },
  98. "engines": {
  99. "node": ">=20.10.0",
  100. "pnpm": ">=9.12.0"
  101. },
  102. "packageManager": "pnpm@9.15.7",
  103. "pnpm": {
  104. "peerDependencyRules": {
  105. "allowedVersions": {
  106. "eslint": "*"
  107. }
  108. },
  109. "overrides": {
  110. "@ast-grep/napi": "catalog:",
  111. "@ctrl/tinycolor": "catalog:",
  112. "clsx": "catalog:",
  113. "esbuild": "0.24.0",
  114. "pinia": "catalog:",
  115. "vue": "catalog:"
  116. },
  117. "neverBuiltDependencies": [
  118. "canvas",
  119. "node-gyp"
  120. ]
  121. }
  122. }