strata-ui-react 0.1.4 → 0.1.6

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,15 +1,15 @@
1
1
  {
2
2
  "name": "strata-ui-react",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "type": "module",
5
- "main": "./dist/strata-ui-react.cjs",
6
- "module": "./dist/strata-ui-react.es",
5
+ "main": "./dist/strata-ui-react.cjs.js",
6
+ "module": "./dist/strata-ui-react.es.js",
7
7
  "types": "./dist/index.d.ts",
8
8
  "exports": {
9
9
  ".": {
10
10
  "types": "./dist/index.d.ts",
11
- "import": "./dist/strata-ui-react.es",
12
- "require": "./dist/strata-ui-react.cjs"
11
+ "import": "./dist/strata-ui-react.es.js",
12
+ "require": "./dist/strata-ui-react.cjs.js"
13
13
  },
14
14
  "./style.css": "./dist/style.css"
15
15
  },
@@ -33,6 +33,10 @@
33
33
  "tailwindcss": "^4.1.18",
34
34
  "vite-plugin-dts": "^4.5.4"
35
35
  },
36
+ "peerDependencies": {
37
+ "react": "^19.2.0",
38
+ "react-dom": "^19.2.0"
39
+ },
36
40
  "devDependencies": {
37
41
  "@eslint/js": "^9.39.1",
38
42
  "@tailwindcss/cli": "^4.1.18",
@@ -54,6 +58,9 @@
54
58
  "build": "tsc -b && vite build && pnpm run build:css",
55
59
  "build:css": "npx @tailwindcss/cli -i ./src/style.css -o ./dist/style.css --minify",
56
60
  "lint": "eslint .",
57
- "preview": "vite preview"
61
+ "preview": "vite preview",
62
+ "release:patch": "pnpm build && pnpm version patch && git push && pnpm publish",
63
+ "release:minor": "pnpm build && pnpm version minor && git push && pnpm publish",
64
+ "release:major": "pnpm build && pnpm version major && git push && pnpm publish"
58
65
  }
59
66
  }