package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@vben-core/design",
  3. "version": "5.6.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/base/design"
  10. },
  11. "license": "MIT",
  12. "type": "module",
  13. "scripts": {
  14. "build": "pnpm vite build",
  15. "prepublishOnly": "npm run build"
  16. },
  17. "files": [
  18. "dist",
  19. "src"
  20. ],
  21. "main": "./dist/index.mjs",
  22. "module": "./dist/index.mjs",
  23. "exports": {
  24. "./bem": {
  25. "development": "./src/scss-bem/bem.scss",
  26. "default": "./dist/bem.scss"
  27. },
  28. "./theme": {
  29. "default": "./src/css/global.css"
  30. },
  31. ".": {
  32. "types": "./src/index.ts",
  33. "development": "./src/index.ts",
  34. "default": "./dist/design.css"
  35. }
  36. },
  37. "publishConfig": {
  38. "exports": {
  39. ".": {
  40. "default": "./dist/index.mjs"
  41. }
  42. }
  43. },
  44. "dependencies": {
  45. "@iconify/json": "catalog:",
  46. "@iconify/tailwind4": "catalog:",
  47. "@tailwindcss/typography": "catalog:",
  48. "tw-animate-css": "catalog:"
  49. }
  50. }