astro/packages/integrations/tailwind/package.json

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

48 lines
1.1 KiB
JSON
Raw Normal View History

{
"name": "@astrojs/tailwind",
"description": "Tailwind + Astro Integrations",
"version": "0.2.2",
"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-component"
],
"bugs": "https://github.com/withastro/astro/issues",
"homepage": "https://astro.build",
"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.2",
"autoprefixer": "^10.4.7",
"postcss": "^8.4.14",
"tailwindcss": "^3.0.24"
},
"devDependencies": {
2022-04-02 19:37:28 +00:00
"@types/tailwindcss": "^3.0.10",
"astro": "workspace:*",
"astro-scripts": "workspace:*"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"postcss"
]
}
}
}