package.json 1008 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "@vben-core/typings",
  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/@vben-core/shared/typings"
  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. "./vue-router": {
  30. "types": "./vue-router.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. "vue": "^3.4.29",
  43. "vue-router": "^4.3.3"
  44. }
  45. }