astro/packages/integrations/tailwind/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.3 KiB
JSON
Raw Normal View History

{
"name": "@astrojs/tailwind",
"description": "Use Tailwind CSS to style your Astro site",
"version": "3.1.1",
"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"
},
"scripts": {
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
"build:ci": "astro-scripts build \"src/**/*.ts\"",
"dev": "astro-scripts dev \"src/**/*.ts\""
},
"dependencies": {
"@proload/core": "^0.3.3",
"autoprefixer": "^10.4.14",
"postcss": "^8.4.23",
"postcss-load-config": "^4.0.1"
},
"devDependencies": {
"astro": "workspace:*",
2022-09-28 15:13:33 +00:00
"astro-scripts": "workspace:*",
"tailwindcss": "^3.3.2",
2023-04-25 14:04:45 +00:00
"vite": "^4.3.1"
},
"peerDependencies": {
"astro": "workspace:^2.3.2",
2023-02-17 14:16:25 +00:00
"tailwindcss": "^3.0.24"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"postcss"
]
}
}
}