2022-03-18 22:35:45 +00:00
|
|
|
{
|
|
|
|
"name": "@astrojs/tailwind",
|
|
|
|
"description": "Tailwind + Astro Integrations",
|
2022-06-28 15:11:59 +00:00
|
|
|
"version": "0.2.2",
|
2022-03-18 22:35:45 +00: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": [
|
|
|
|
"astro-component"
|
|
|
|
],
|
2022-03-18 22:35:45 +00:00
|
|
|
"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",
|
2022-03-24 00:46:16 +00:00
|
|
|
"build:ci": "astro-scripts build \"src/**/*.ts\"",
|
2022-03-18 22:35:45 +00:00
|
|
|
"dev": "astro-scripts dev \"src/**/*.ts\""
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-04-26 22:26:01 +00:00
|
|
|
"@proload/core": "^0.3.2",
|
2022-05-12 16:42:34 +00:00
|
|
|
"autoprefixer": "^10.4.7",
|
2022-05-19 15:22:27 +00:00
|
|
|
"postcss": "^8.4.14",
|
2022-04-20 13:42:31 +00:00
|
|
|
"tailwindcss": "^3.0.24"
|
2022-03-18 22:35:45 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-04-02 19:37:28 +00:00
|
|
|
"@types/tailwindcss": "^3.0.10",
|
2022-03-18 22:35:45 +00:00
|
|
|
"astro": "workspace:*",
|
|
|
|
"astro-scripts": "workspace:*"
|
|
|
|
},
|
|
|
|
"pnpm": {
|
|
|
|
"peerDependencyRules": {
|
|
|
|
"ignoreMissing": [
|
|
|
|
"postcss"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|