@estiato/tailwind-preset 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +27 -0
  2. package/src/preset.css +11 -0
package/package.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "@estiato/tailwind-preset",
3
+ "version": "0.1.0",
4
+ "description": "Tailwind v4 CSS preset for Estiato — imports tokens and shared utilities.",
5
+ "license": "MIT",
6
+ "sideEffects": true,
7
+ "files": [
8
+ "src"
9
+ ],
10
+ "exports": {
11
+ "./preset.css": "./src/preset.css"
12
+ },
13
+ "dependencies": {
14
+ "@estiato/tokens": "0.1.0"
15
+ },
16
+ "peerDependencies": {
17
+ "tailwindcss": "^4.0.0"
18
+ },
19
+ "publishConfig": {
20
+ "access": "public"
21
+ },
22
+ "scripts": {
23
+ "build": "echo 'css-only package, nothing to build'",
24
+ "typecheck": "echo 'no ts'",
25
+ "lint": "echo 'no lint'"
26
+ }
27
+ }
package/src/preset.css ADDED
@@ -0,0 +1,11 @@
1
+ /* Estiato Tailwind v4 preset.
2
+ *
3
+ * Consumers @import this from their app's globals.css:
4
+ *
5
+ * @import "tailwindcss";
6
+ * @import "@estiato/tailwind-preset/preset.css";
7
+ *
8
+ * The order matters — tailwindcss first, preset second.
9
+ */
10
+
11
+ @import "@estiato/tokens/tokens.css";