1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {
- "name": "@astrojs/tailwind",
- "description": "Use Tailwind CSS to style your Astro site",
- "version": "5.1.0",
- "type": "module",
- "types": "./dist/index.d.ts",
- "author": "withastro",
- "license": "MIT",
- "repository": {
- "type": "git",
- "url": "https://github.com/withastro/astro.git",
- "directory": "packages/integrations/tailwind"
- },
- "keywords": [
- "astro-integration",
- "astro-component"
- ],
- "bugs": "https://github.com/withastro/astro/issues",
- "homepage": "https://docs.astro.build/en/guides/integrations-guide/tailwind/",
- "exports": {
- ".": "./dist/index.js",
- "./base.css": "./base.css",
- "./package.json": "./package.json"
- },
- "files": [
- "dist",
- "base.css"
- ],
- "scripts": {
- "build": "astro-scripts build \"src/**/*.ts\" && tsc",
- "build:ci": "astro-scripts build \"src/**/*.ts\"",
- "dev": "astro-scripts dev \"src/**/*.ts\"",
- "test": "astro-scripts test \"test/**/*.test.js\""
- },
- "dependencies": {
- "autoprefixer": "^10.4.15",
- "postcss": "^8.4.35",
- "postcss-load-config": "^4.0.2"
- },
- "devDependencies": {
- "astro": "workspace:*",
- "astro-scripts": "workspace:*",
- "tailwindcss": "^3.3.5",
- "vite": "^5.1.2"
- },
- "peerDependencies": {
- "astro": "^3.0.0 || ^4.0.0",
- "tailwindcss": "^3.0.24"
- },
- "publishConfig": {
- "provenance": true
- }
- }
|