windrunner 1.1.1 → 1.1.3

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "windrunner",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "description": "Zero-config Tailwind v4 runtime — compile utility classes on-demand in the browser, no build step required",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -15,6 +15,10 @@
15
15
  "import": "./dist/index.esm.js",
16
16
  "require": "./dist/index.js"
17
17
  },
18
+ "./react": {
19
+ "import": "./dist/react.esm.js",
20
+ "require": "./dist/react.js"
21
+ },
18
22
  "./min": {
19
23
  "import": "./dist/index.min.js"
20
24
  },
@@ -50,6 +54,14 @@
50
54
  "url": "https://github.com/Bigetion/windrunner/issues"
51
55
  },
52
56
  "homepage": "https://github.com/Bigetion/windrunner#readme",
57
+ "peerDependencies": {
58
+ "react": ">=16.8.0"
59
+ },
60
+ "peerDependenciesMeta": {
61
+ "react": {
62
+ "optional": true
63
+ }
64
+ },
53
65
  "devDependencies": {
54
66
  "esbuild": "^0.28.1",
55
67
  "typescript": "^5.0.0",