oto-storage 0.4.1 → 0.4.2

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 +0 -19
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -25,27 +25,8 @@ pnpm add oto-storage
25
25
 
26
26
  ### 📚 Documentation Site (VitePress)
27
27
 
28
- This repo includes a VitePress documentation site in `/docs`.
29
28
  Live documentation: [https://oto.diom.dev](https://oto.diom.dev)
30
29
 
31
- ```bash
32
- # Run docs locally
33
- npm run docs:dev
34
-
35
- # Build static docs
36
- npm run docs:build
37
-
38
- # Preview built docs
39
- npm run docs:preview
40
- ```
41
-
42
- Cloudflare Pages deployment settings:
43
-
44
- - Project root: `/` (repo root)
45
- - Build command: `npm run docs:build`
46
- - Output directory: `docs/.vitepress/dist`
47
- - Environment variable (optional analytics): `GA_MEASUREMENT_ID=G-XXXXXXXXXX`
48
-
49
30
  ### ⚡ The Problem
50
31
 
51
32
  Working with browser storage usually involves repetitive `JSON.parse` and `JSON.stringify` calls, manual key prefixing to avoid collisions, and a total lack of Type Safety.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oto-storage",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "A lightweight, type-safe wrapper for localStorage and sessionStorage using the Proxy API.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",