package.json 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. {
  2. "name": "vben-admin-monorepo",
  3. "version": "5.5.8",
  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:app": "cross-env NODE_OPTIONS=--max-old-space-size=8192 turbo build:app",
  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. "dev:app": "turbo-run dev:app",
  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. "devDependencies": {
  56. "@changesets/changelog-github": "catalog:",
  57. "@changesets/cli": "catalog:",
  58. "@playwright/test": "catalog:",
  59. "@types/node": "catalog:",
  60. "@vben/commitlint-config": "workspace:*",
  61. "@vben/eslint-config": "workspace:*",
  62. "@vben/prettier-config": "workspace:*",
  63. "@vben/stylelint-config": "workspace:*",
  64. "@vben/tailwind-config": "workspace:*",
  65. "@vben/tsconfig": "workspace:*",
  66. "@vben/turbo-run": "workspace:*",
  67. "@vben/vite-config": "workspace:*",
  68. "@vben/vsh": "workspace:*",
  69. "@vitejs/plugin-vue": "catalog:",
  70. "@vitejs/plugin-vue-jsx": "catalog:",
  71. "@vue/test-utils": "catalog:",
  72. "autoprefixer": "catalog:",
  73. "cross-env": "catalog:",
  74. "cspell": "catalog:",
  75. "happy-dom": "catalog:",
  76. "is-ci": "catalog:",
  77. "lefthook": "catalog:",
  78. "playwright": "catalog:",
  79. "rimraf": "catalog:",
  80. "tailwindcss": "catalog:",
  81. "turbo": "catalog:",
  82. "typescript": "catalog:",
  83. "unbuild": "catalog:",
  84. "vite": "catalog:",
  85. "vitest": "catalog:",
  86. "vue": "catalog:",
  87. "vue-tsc": "catalog:"
  88. },
  89. "engines": {
  90. "node": ">=20.10.0",
  91. "pnpm": ">=9.12.0"
  92. },
  93. "packageManager": "pnpm@10.12.4",
  94. "pnpm": {
  95. "peerDependencyRules": {
  96. "allowedVersions": {
  97. "eslint": "*"
  98. }
  99. },
  100. "overrides": {
  101. "@ast-grep/napi": "catalog:",
  102. "@ctrl/tinycolor": "catalog:",
  103. "clsx": "catalog:",
  104. "esbuild": "0.25.3",
  105. "pinia": "catalog:",
  106. "vue": "catalog:"
  107. },
  108. "neverBuiltDependencies": [
  109. "canvas",
  110. "node-gyp"
  111. ]
  112. }
  113. }