package.json 3.5 KB

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