package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@vben/tailwind-config",
  3. "version": "1.0.0",
  4. "private": true,
  5. "type": "module",
  6. "license": "MIT",
  7. "homepage": "https://github.com/vbenjs/vue-vben-admin",
  8. "repository": {
  9. "type": "git",
  10. "url": "git+https://github.com/vbenjs/vue-vben-admin.git",
  11. "directory": "internal/tailwind-config"
  12. },
  13. "bugs": "https://github.com/vbenjs/vue-vben-admin/issues",
  14. "scripts": {
  15. "build": "pnpm unbuild",
  16. "stub": "pnpm unbuild --stub"
  17. },
  18. "files": [
  19. "dist"
  20. ],
  21. "main": "./dist/index.mjs",
  22. "module": "./dist/index.mjs",
  23. "types": "./dist/index.d.ts",
  24. "typesVersions": {
  25. "*": {
  26. "*": [
  27. "./dist/*",
  28. "./*"
  29. ]
  30. }
  31. },
  32. "imports": {
  33. "#*": "./src/*"
  34. },
  35. "exports": {
  36. ".": {
  37. "types": "./src/index.ts",
  38. "import": "./dist/index.mjs",
  39. "require": "./dist/index.cjs"
  40. },
  41. "./postcss": {
  42. "types": "./src/postcss.config.ts",
  43. "default": "./dist/postcss.config.mjs"
  44. },
  45. "./*": "./*"
  46. },
  47. "peerDependencies": {
  48. "tailwindcss": "^3.4.3"
  49. },
  50. "dependencies": {
  51. "@iconify/json": "^2.2.216",
  52. "@iconify/tailwind": "^1.1.1",
  53. "@tailwindcss/forms": "^0.5.7",
  54. "@tailwindcss/nesting": "0.0.0-insiders.565cd3e",
  55. "@tailwindcss/typography": "^0.5.13",
  56. "autoprefixer": "^10.4.19",
  57. "cssnano": "^7.0.2",
  58. "postcss": "^8.4.38",
  59. "postcss-antd-fixes": "^0.2.0",
  60. "postcss-import": "^16.1.0",
  61. "postcss-preset-env": "^9.5.14",
  62. "tailwindcss": "^3.4.4",
  63. "tailwindcss-animate": "^1.0.7"
  64. },
  65. "devDependencies": {
  66. "@types/postcss-import": "^14.0.3",
  67. "@vben/node-utils": "workspace:*"
  68. }
  69. }