package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "@vben-core/layout-ui",
  3. "version": "5.7.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/uikit/layout-ui"
  10. },
  11. "license": "MIT",
  12. "type": "module",
  13. "scripts": {
  14. "build": "pnpm exec tsdown",
  15. "prepublishOnly": "npm run build"
  16. },
  17. "files": [
  18. "dist"
  19. ],
  20. "sideEffects": [
  21. "**/*.css"
  22. ],
  23. "main": "./dist/index.mjs",
  24. "module": "./dist/index.mjs",
  25. "types": "./dist/index.d.ts",
  26. "exports": {
  27. ".": {
  28. "types": "./src/index.ts",
  29. "development": "./src/index.ts",
  30. "production": "./src/index.ts",
  31. "default": "./dist/index.mjs"
  32. }
  33. },
  34. "publishConfig": {
  35. "exports": {
  36. ".": {
  37. "types": "./dist/index.d.ts",
  38. "default": "./dist/index.mjs"
  39. }
  40. }
  41. },
  42. "dependencies": {
  43. "@vben-core/composables": "workspace:*",
  44. "@vben-core/icons": "workspace:*",
  45. "@vben-core/shadcn-ui": "workspace:*",
  46. "@vben-core/shared": "workspace:*",
  47. "@vben-core/typings": "workspace:*",
  48. "@vueuse/core": "catalog:",
  49. "vue": "catalog:"
  50. }
  51. }