@shuriken-ui/tailwind 4.0.0-alpha.25 → 4.0.0-alpha.26

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/README.md +2 -3
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -6,7 +6,6 @@
6
6
  </picture>
7
7
  </p>
8
8
 
9
-
10
9
  <p align="center">
11
10
  <a href="https://cssninja.io" title="Our official website">by <strong>cssninja.io</strong></a>
12
11
  </p>
@@ -35,7 +34,7 @@ import { defineConfig } from 'vite'
35
34
 
36
35
  export default defineConfig({
37
36
  plugins: [tailwindcss()],
38
- });
37
+ })
39
38
  ```
40
39
 
41
40
  Reference Shuriken UI in your `tailwind.css` file:
@@ -52,4 +51,4 @@ Reference Shuriken UI in your `tailwind.css` file:
52
51
  }
53
52
  ```
54
53
 
55
- > See the [theme.css](https://github.com/shuriken-ui/shuriken-ui/blob/main/packages/tailwind/lib/theme.css) file for a complete list of available variables you can customize.
54
+ > See the [theme.css](https://github.com/shuriken-ui/shuriken-ui/blob/main/packages/tailwind/lib/theme.css) file for a complete list of available variables you can customize.
package/package.json CHANGED
@@ -1,15 +1,16 @@
1
1
  {
2
2
  "name": "@shuriken-ui/tailwind",
3
- "version": "4.0.0-alpha.25",
4
- "license": "MIT",
3
+ "type": "module",
4
+ "version": "4.0.0-alpha.26",
5
5
  "author": "Css Ninja <hello@cssninja.io> (https://cssninja.io)",
6
+ "license": "MIT",
7
+ "homepage": "https://github.com/shuriken-ui/tailwind",
6
8
  "repository": {
7
9
  "type": "git",
8
10
  "url": "git+https://github.com/shuriken-ui/shuriken-ui.git",
9
11
  "directory": "packages/tailwind"
10
12
  },
11
13
  "bugs": "https://github.com/shuriken-ui/tailwind/issues",
12
- "homepage": "https://github.com/shuriken-ui/tailwind",
13
14
  "keywords": [
14
15
  "nuxt",
15
16
  "nuxt3",
@@ -22,16 +23,15 @@
22
23
  "design-system",
23
24
  "module"
24
25
  ],
25
- "type": "module",
26
26
  "exports": {
27
27
  ".": "./lib/index.css",
28
28
  "./theme.css": "./lib/theme.css",
29
29
  "./*.css": "./lib/css/*.css"
30
30
  },
31
31
  "files": [
32
+ "lib/css",
32
33
  "lib/index.css",
33
- "lib/theme.css",
34
- "lib/css"
34
+ "lib/theme.css"
35
35
  ],
36
36
  "dependencies": {
37
37
  "@tailwindcss/typography": "^0.5.15",