664ebf449e
* Update peer dep * Create leaders-of-the-free-world.md Update: `@astrojs/tailwindcss` project with `tailwindcss` as a `peer-dependency` * Removed tailwindcss as 'dependency' * Update `pnpm-lock` with changes to deps * Update .changeset/leaders-of-the-free-world.md Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com> Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com>
49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
|
"name": "@astrojs/tailwind",
|
|
"description": "Tailwind + Astro Integrations",
|
|
"version": "1.0.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.2",
|
|
"autoprefixer": "^10.4.7",
|
|
"postcss": "^8.4.14"
|
|
},
|
|
"devDependencies": {
|
|
"astro": "workspace:*",
|
|
"astro-scripts": "workspace:*"
|
|
},
|
|
"peerDependencies": {
|
|
"tailwindcss" : "^3.0.24"
|
|
},
|
|
"pnpm": {
|
|
"peerDependencyRules": {
|
|
"ignoreMissing": [
|
|
"postcss"
|
|
]
|
|
}
|
|
}
|
|
}
|