package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "@vben-core/design",
  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/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. "production": "./src/scss-bem/bem.scss",
  27. "default": "./dist/bem.scss"
  28. },
  29. "./theme": {
  30. "default": "./src/css/global.css"
  31. },
  32. ".": {
  33. "types": "./src/index.ts",
  34. "development": "./src/index.ts",
  35. "production": "./src/index.ts",
  36. "default": "./dist/design.css"
  37. }
  38. },
  39. "publishConfig": {
  40. "exports": {
  41. ".": {
  42. "default": "./dist/index.mjs"
  43. }
  44. }
  45. },
  46. "dependencies": {
  47. "@iconify/json": "catalog:",
  48. "@iconify/tailwind4": "catalog:",
  49. "@tailwindcss/typography": "catalog:",
  50. "tw-animate-css": "catalog:"
  51. }
  52. }