package.json 3.5 KB

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