@openpkg-ts/ui 0.1.3 → 0.1.5

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.
@@ -1659,7 +1659,7 @@ function extractFlags(codeblock) {
1659
1659
  const title = metaWithoutFlags.trim();
1660
1660
  return { title, flags: flags.slice(1) };
1661
1661
  }
1662
- // src/hooks/use-locale-storage.ts
1662
+ // src/hooks/use-local-storage.ts
1663
1663
  import React7 from "react";
1664
1664
  function useStateOrLocalStorage(key, initialState) {
1665
1665
  const [state, setState] = React7.useState(initialState);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openpkg-ts/ui",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "UI primitives and components for OpenPkg documentation",
5
5
  "homepage": "https://github.com/ryanwaits/openpkg-ts#readme",
6
6
  "repository": {
@@ -29,7 +29,8 @@
29
29
  "./lib/utils": {
30
30
  "types": "./dist/lib/utils.d.ts",
31
31
  "import": "./dist/lib/utils.js"
32
- }
32
+ },
33
+ "./styles/tokens.css": "./src/styles/tokens.css"
33
34
  },
34
35
  "scripts": {
35
36
  "build": "bunup",
@@ -48,7 +49,7 @@
48
49
  "lucide-react": "^0.555.0",
49
50
  "seti-icons": "^0.0.4",
50
51
  "tailwind-merge": "^2.5.0",
51
- "zod": "^3.25.0"
52
+ "zod": "^4.3.6"
52
53
  },
53
54
  "peerDependencies": {
54
55
  "react": "^18 || ^19",
@@ -57,7 +58,7 @@
57
58
  "devDependencies": {
58
59
  "@types/react": "^19.0.0",
59
60
  "@types/react-dom": "^19.0.0",
60
- "bunup": "latest",
61
+ "bunup": "^0.16.20",
61
62
  "typescript": "^5.0.0"
62
63
  }
63
64
  }