package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "@astrojs/tailwind",
  3. "description": "Use Tailwind CSS to style your Astro site",
  4. "version": "5.1.0",
  5. "type": "module",
  6. "types": "./dist/index.d.ts",
  7. "author": "withastro",
  8. "license": "MIT",
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/withastro/astro.git",
  12. "directory": "packages/integrations/tailwind"
  13. },
  14. "keywords": [
  15. "astro-integration",
  16. "astro-component"
  17. ],
  18. "bugs": "https://github.com/withastro/astro/issues",
  19. "homepage": "https://docs.astro.build/en/guides/integrations-guide/tailwind/",
  20. "exports": {
  21. ".": "./dist/index.js",
  22. "./base.css": "./base.css",
  23. "./package.json": "./package.json"
  24. },
  25. "files": [
  26. "dist",
  27. "base.css"
  28. ],
  29. "scripts": {
  30. "build": "astro-scripts build \"src/**/*.ts\" && tsc",
  31. "build:ci": "astro-scripts build \"src/**/*.ts\"",
  32. "dev": "astro-scripts dev \"src/**/*.ts\"",
  33. "test": "astro-scripts test \"test/**/*.test.js\""
  34. },
  35. "dependencies": {
  36. "autoprefixer": "^10.4.15",
  37. "postcss": "^8.4.35",
  38. "postcss-load-config": "^4.0.2"
  39. },
  40. "devDependencies": {
  41. "astro": "workspace:*",
  42. "astro-scripts": "workspace:*",
  43. "tailwindcss": "^3.3.5",
  44. "vite": "^5.1.2"
  45. },
  46. "peerDependencies": {
  47. "astro": "^3.0.0 || ^4.0.0",
  48. "tailwindcss": "^3.0.24"
  49. },
  50. "publishConfig": {
  51. "provenance": true
  52. }
  53. }