2022-03-18 15:35:45 -07:00
|
|
|
{
|
|
|
|
"name": "@astrojs/tailwind",
|
2023-03-09 19:55:49 -03:00
|
|
|
"description": "Use Tailwind CSS to style your Astro site",
|
2023-12-27 10:34:07 -08:00
|
|
|
"version": "5.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"
|
|
|
|
},
|
2023-05-17 16:54:00 +08:00
|
|
|
"files": [
|
|
|
|
"dist",
|
|
|
|
"base.css"
|
|
|
|
],
|
2022-03-18 15:35:45 -07:00
|
|
|
"scripts": {
|
|
|
|
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
|
2022-03-23 19:46:16 -05:00
|
|
|
"build:ci": "astro-scripts build \"src/**/*.ts\"",
|
2023-12-28 00:34:01 +07:00
|
|
|
"dev": "astro-scripts dev \"src/**/*.ts\"",
|
2024-01-30 18:17:32 +03:00
|
|
|
"test": "astro-scripts test \"test/**/*.test.js\""
|
2022-03-18 15:35:45 -07:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-08-23 19:52:13 +08:00
|
|
|
"autoprefixer": "^10.4.15",
|
2024-02-15 17:20:38 +08:00
|
|
|
"postcss": "^8.4.35",
|
2023-11-21 12:09:19 +08:00
|
|
|
"postcss-load-config": "^4.0.2"
|
2022-03-18 15:35:45 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"astro": "workspace:*",
|
2022-09-28 23:13:33 +08:00
|
|
|
"astro-scripts": "workspace:*",
|
2023-11-21 12:09:19 +08:00
|
|
|
"tailwindcss": "^3.3.5",
|
2024-02-15 17:20:38 +08:00
|
|
|
"vite": "^5.1.2"
|
2022-03-18 15:35:45 -07:00
|
|
|
},
|
2022-09-14 20:17:04 +01:00
|
|
|
"peerDependencies": {
|
2023-12-05 08:06:52 -05:00
|
|
|
"astro": "^3.0.0 || ^4.0.0",
|
2023-02-17 22:16:25 +08:00
|
|
|
"tailwindcss": "^3.0.24"
|
2023-10-03 16:25:25 +02:00
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"provenance": true
|
2022-03-18 15:35:45 -07:00
|
|
|
}
|
|
|
|
}
|