package.json 1.3 KB

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