package.json 1014 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@vben/types",
  3. "version": "5.0.0",
  4. "homepage": "https://github.com/vbenjs/vue-vben-admin",
  5. "bugs": "https://github.com/vbenjs/vue-vben-admin/issues",
  6. "repository": {
  7. "type": "git",
  8. "url": "git+https://github.com/vbenjs/vue-vben-admin.git",
  9. "directory": "packages/types"
  10. },
  11. "license": "MIT",
  12. "type": "module",
  13. "scripts": {
  14. "build": "pnpm unbuild",
  15. "stub": "pnpm build --stub"
  16. },
  17. "files": [
  18. "dist"
  19. ],
  20. "main": "./dist/index.mjs",
  21. "module": "./dist/index.mjs",
  22. "types": "./dist/index.d.ts",
  23. "exports": {
  24. ".": {
  25. "types": "./src/index.ts",
  26. "development": "./src/index.ts",
  27. "default": "./dist/index.mjs"
  28. },
  29. "./global": {
  30. "types": "./global.d.ts"
  31. }
  32. },
  33. "publishConfig": {
  34. "exports": {
  35. ".": {
  36. "types": "./dist/index.d.ts",
  37. "default": "./dist/index.mjs"
  38. }
  39. }
  40. },
  41. "dependencies": {
  42. "@vben-core/typings": "workspace:*",
  43. "vue": "^3.4.32",
  44. "vue-router": "^4.4.0"
  45. }
  46. }