2022-03-18 15:35:45 -07:00
|
|
|
{
|
|
|
|
"name": "@astrojs/tailwind",
|
|
|
|
"description": "Tailwind + Astro Integrations",
|
2022-10-13 09:29:24 -07:00
|
|
|
"version": "2.1.0",
|
2022-03-18 15:35:45 -07:00
|
|
|
"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"
|
|
|
|
},
|
2022-03-21 19:31:15 +00:00
|
|
|
"keywords": [
|
2022-07-08 16:55:33 -04:00
|
|
|
"astro-integration",
|
2022-03-21 19:31:15 +00:00
|
|
|
"astro-component"
|
|
|
|
],
|
2022-03-18 15:35:45 -07:00
|
|
|
"bugs": "https://github.com/withastro/astro/issues",
|
2022-07-11 21:10:34 +02:00
|
|
|
"homepage": "https://docs.astro.build/en/guides/integrations-guide/tailwind/",
|
2022-03-18 15:35:45 -07:00
|
|
|
"exports": {
|
|
|
|
".": "./dist/index.js",
|
|
|
|
"./base.css": "./base.css",
|
|
|
|
"./package.json": "./package.json"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
|
2022-03-23 19:46:16 -05:00
|
|
|
"build:ci": "astro-scripts build \"src/**/*.ts\"",
|
2022-03-18 15:35:45 -07:00
|
|
|
"dev": "astro-scripts dev \"src/**/*.ts\""
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-04-26 17:26:01 -05:00
|
|
|
"@proload/core": "^0.3.2",
|
2022-05-12 10:42:34 -06:00
|
|
|
"autoprefixer": "^10.4.7",
|
2022-09-14 20:17:04 +01:00
|
|
|
"postcss": "^8.4.14"
|
2022-03-18 15:35:45 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"astro": "workspace:*",
|
2022-09-28 23:13:33 +08:00
|
|
|
"astro-scripts": "workspace:*",
|
|
|
|
"tailwindcss": "^3.0.24"
|
2022-03-18 15:35:45 -07:00
|
|
|
},
|
2022-09-14 20:17:04 +01:00
|
|
|
"peerDependencies": {
|
2022-09-14 19:19:56 +00:00
|
|
|
"tailwindcss": "^3.0.24"
|
2022-09-14 20:17:04 +01:00
|
|
|
},
|
2022-03-18 15:35:45 -07:00
|
|
|
"pnpm": {
|
|
|
|
"peerDependencyRules": {
|
|
|
|
"ignoreMissing": [
|
|
|
|
"postcss"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|