package.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. {
  2. "name": "vben-admin-pro",
  3. "version": "5.0.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": "./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": "vsh clean",
  39. "commit": "czg",
  40. "dev": "turbo-run dev",
  41. "dev:antd": "pnpm -F @vben/web-antd run dev",
  42. "dev:docs": "pnpm -F @vben/docs run dev",
  43. "dev:ele": "pnpm -F @vben/web-ele run dev",
  44. "dev:naive": "pnpm -F @vben/web-naive run dev",
  45. "format": "vsh lint --format",
  46. "lint": "vsh lint",
  47. "postinstall": "turbo run stub",
  48. "preinstall": "npx only-allow pnpm",
  49. "prepare": "is-ci || husky",
  50. "preview": "turbo-run preview",
  51. "publint": "vsh publint",
  52. "reinstall": "pnpm clean --del-lock && pnpm bootstrap",
  53. "test:unit": "vitest",
  54. "update:deps": "pnpm update --latest --recursive",
  55. "version": "pnpm exec changeset version && pnpm install --no-frozen-lockfile"
  56. },
  57. "devDependencies": {
  58. "@changesets/changelog-github": "^0.5.0",
  59. "@changesets/cli": "^2.27.7",
  60. "@ls-lint/ls-lint": "^2.2.3",
  61. "@types/jsdom": "^21.1.7",
  62. "@types/node": "^22.1.0",
  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. "@vue/test-utils": "^2.4.6",
  73. "autoprefixer": "^10.4.20",
  74. "cross-env": "^7.0.3",
  75. "cspell": "^8.13.0",
  76. "husky": "^9.1.4",
  77. "is-ci": "^3.0.1",
  78. "jsdom": "^24.1.1",
  79. "lint-staged": "^15.2.8",
  80. "rimraf": "^6.0.1",
  81. "tailwindcss": "^3.4.7",
  82. "turbo": "^2.0.11",
  83. "typescript": "^5.5.4",
  84. "unbuild": "^2.0.0",
  85. "vite": "^5.3.5",
  86. "vitest": "^2.0.5",
  87. "vue-tsc": "^2.0.29"
  88. },
  89. "engines": {
  90. "node": ">=20",
  91. "pnpm": ">=9"
  92. },
  93. "packageManager": "pnpm@9.7.0",
  94. "pnpm": {
  95. "peerDependencyRules": {
  96. "allowedVersions": {
  97. "eslint": "*"
  98. }
  99. },
  100. "overrides": {
  101. "@ctrl/tinycolor": "^4.1.0",
  102. "clsx": "^2.1.1",
  103. "vue": "^3.4.35"
  104. },
  105. "neverBuiltDependencies": [
  106. "canvas",
  107. "node-gyp",
  108. "playwright"
  109. ]
  110. }
  111. }