package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "name": "vben-admin-monorepo",
  3. "version": "5.7.0",
  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. "bootstrap": "pnpm install",
  29. "build": "cross-env NODE_OPTIONS=--max-old-space-size=8192 turbo build",
  30. "build:analyze": "turbo build:analyze",
  31. "build:docker": "./scripts/deploy/build-local-docker-image.sh",
  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. "format": "vsh lint --format",
  42. "lint": "vsh lint",
  43. "postinstall": "pnpm -r run stub --if-present",
  44. "preinstall": "npx only-allow pnpm",
  45. "prepare": "is-ci || pnpm exec lefthook install",
  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. "devDependencies": {
  56. "@changesets/changelog-github": "catalog:",
  57. "@changesets/cli": "catalog:",
  58. "@tsdown/css": "catalog:",
  59. "@types/node": "catalog:",
  60. "@vben/commitlint-config": "workspace:*",
  61. "@vben/eslint-config": "workspace:*",
  62. "@vben/oxfmt-config": "workspace:*",
  63. "@vben/oxlint-config": "workspace:*",
  64. "@vben/stylelint-config": "workspace:*",
  65. "@vben/tailwind-config": "workspace:*",
  66. "@vben/tsconfig": "workspace:*",
  67. "@vben/turbo-run": "workspace:*",
  68. "@vben/vite-config": "workspace:*",
  69. "@vben/vsh": "workspace:*",
  70. "@vitejs/plugin-vue": "catalog:",
  71. "@vitejs/plugin-vue-jsx": "catalog:",
  72. "cross-env": "catalog:",
  73. "cspell": "catalog:",
  74. "happy-dom": "catalog:",
  75. "is-ci": "catalog:",
  76. "lefthook": "catalog:",
  77. "oxfmt": "catalog:",
  78. "oxlint": "catalog:",
  79. "oxlint-tsgolint": "catalog:",
  80. "playwright": "catalog:",
  81. "rimraf": "catalog:",
  82. "tailwindcss": "catalog:",
  83. "tsdown": "catalog:",
  84. "turbo": "catalog:",
  85. "typescript": "catalog:",
  86. "vite": "catalog:",
  87. "vitest": "catalog:",
  88. "vue": "catalog:",
  89. "vue-tsc": "catalog:"
  90. },
  91. "engines": {
  92. "node": "^22.18.0 || ^24.0.0",
  93. "pnpm": ">=10.0.0"
  94. },
  95. "packageManager": "pnpm@10.33.4"
  96. }