0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-06 22:10:10 -05:00
astro/packages/integrations/tailwind/package.json

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

56 lines
1.4 KiB
JSON
Raw Normal View History

{
"name": "@astrojs/tailwind",
"description": "Use Tailwind CSS to style your Astro site",
"version": "5.1.3",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
"license": "MIT",
"repository": {
"type": "git",
2024-11-15 10:43:34 -05:00
"url": "git+https://github.com/withastro/astro.git",
"directory": "packages/integrations/tailwind"
},
"keywords": [
"astro-integration",
"withastro",
"css",
"tailwindcss"
],
"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"
},
2023-05-17 03:54:00 -05:00
"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.20",
2024-11-27 05:00:35 -05:00
"postcss": "^8.4.49",
"postcss-load-config": "^4.0.2"
},
"devDependencies": {
"astro": "workspace:*",
2022-09-28 10:13:33 -05:00
"astro-scripts": "workspace:*",
"tailwindcss": "^3.4.14",
2024-11-27 05:00:35 -05:00
"vite": "^6.0.1"
},
"peerDependencies": {
2024-12-03 07:07:55 -05:00
"astro": "^3.0.0 || ^4.0.0 || ^5.0.0",
2023-02-17 09:16:25 -05:00
"tailwindcss": "^3.0.24"
},
"publishConfig": {
"provenance": true
}
}