package.json 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. "build:zycc": "pnpm run build --filter=@six/wisdom-legacy",
  33. "changeset": "pnpm exec changeset",
  34. "check": "pnpm run check:circular && pnpm run check:dep && pnpm run check:type && pnpm check:cspell",
  35. "check:circular": "vsh check-circular",
  36. "check:cspell": "cspell lint \"**/*.ts\" \"**/README.md\" \".changeset/*.md\" --no-progress",
  37. "check:dep": "vsh check-dep",
  38. "check:type": "turbo run typecheck",
  39. "clean": "node ./scripts/clean.mjs",
  40. "commit": "czg",
  41. "dev": "turbo-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. "prepare": "is-ci || pnpm exec lefthook install",
  47. "preview": "turbo-run preview",
  48. "publint": "vsh publint",
  49. "reinstall": "pnpm clean --del-lock && pnpm install",
  50. "test:unit": "vitest run --dom",
  51. "test:e2e": "turbo run test:e2e",
  52. "update:deps": "npx taze -r -w",
  53. "version": "pnpm exec changeset version && pnpm install --no-frozen-lockfile",
  54. "catalog": "pnpx codemod pnpm/catalog"
  55. },
  56. "devDependencies": {
  57. "@changesets/changelog-github": "catalog:",
  58. "@changesets/cli": "catalog:",
  59. "@tsdown/css": "catalog:",
  60. "@types/node": "catalog:",
  61. "@vben/commitlint-config": "workspace:*",
  62. "@vben/eslint-config": "workspace:*",
  63. "@vben/oxfmt-config": "workspace:*",
  64. "@vben/oxlint-config": "workspace:*",
  65. "@vben/stylelint-config": "workspace:*",
  66. "@vben/tailwind-config": "workspace:*",
  67. "@vben/tsconfig": "workspace:*",
  68. "@vben/turbo-run": "workspace:*",
  69. "@vben/vite-config": "workspace:*",
  70. "@vben/vsh": "workspace:*",
  71. "@vitejs/plugin-vue": "catalog:",
  72. "@vitejs/plugin-vue-jsx": "catalog:",
  73. "cross-env": "catalog:",
  74. "cspell": "catalog:",
  75. "happy-dom": "catalog:",
  76. "is-ci": "catalog:",
  77. "lefthook": "catalog:",
  78. "oxfmt": "catalog:",
  79. "oxlint": "catalog:",
  80. "oxlint-tsgolint": "catalog:",
  81. "playwright": "catalog:",
  82. "rimraf": "catalog:",
  83. "tailwindcss": "catalog:",
  84. "tsdown": "catalog:",
  85. "turbo": "catalog:",
  86. "typescript": "catalog:",
  87. "vite": "catalog:",
  88. "vitest": "catalog:",
  89. "vue": "catalog:",
  90. "vue-tsc": "catalog:"
  91. },
  92. "engines": {
  93. "node": "^22.18.0 || ^24.0.0",
  94. "pnpm": ">=10.0.0"
  95. },
  96. "packageManager": "pnpm@10.33.4"
  97. }