@storion/storion 1.0.5 → 1.0.7

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 +5 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Storion
2
2
 
3
- **Framework-agnostic client-side database for the browser.** Use it with React, Vue, Angular, Svelte, or vanilla JS. Create databases, tables, save and fetch records, and run JSON queries on **localStorage**, **sessionStorage**, or **IndexedDB**.
3
+ **Storion is a framework-agnostic, in-browser database that lets you define tables and run JSON-style queries on data stored in localStorage, sessionStorage, or IndexedDB** Use it with React, Vue, Angular, Svelte, or vanilla JS. Create databases, tables, save and fetch records, and run JSON queries on **localStorage**, **sessionStorage**, or **IndexedDB**.
4
4
 
5
5
  [![npm](https://img.shields.io/npm/v/@storion/storion.svg)](https://www.npmjs.com/package/@storion/storion)
6
6
  [![GitHub](https://img.shields.io/badge/GitHub-storionjs%2Fstorion-blue?logo=github)](https://github.com/storionjs/storion)
@@ -326,8 +326,9 @@ const stop = createChangeListener(transport, (event) => {
326
326
 
327
327
  **Storion Studio** is a Chrome extension that turns your browser's `localStorage` into a structured database with a visual UI—think of it as an admin console for Storion. It uses the same data layout as the `@storion/storion` npm package, so you can manage data in the extension while your web app uses the library.
328
328
 
329
- - **GitHub (extension):** `https://github.com/storionjs/storion-studio`
330
- - **Docs page:** `https://storionjs.github.io/storion-docs/storion-studio.html`
329
+ - **Chrome Web Store:** [Storion Studio](https://chromewebstore.google.com/detail/nhjidnpjlfnejdakbiccdhmphankkocm?utm_source=item-share-cb)
330
+ - **GitHub (extension):** [https://github.com/storionjs/storion-studio](https://github.com/storionjs/storion-studio)
331
+ - **Docs page:** [https://storionjs.github.io/storion-docs/storion-studio.html](https://storionjs.github.io/storion-docs/storion-studio.html)
331
332
 
332
333
  ### What you can do with Studio
333
334
 
@@ -447,5 +448,6 @@ Full details: [API reference](docs/API.md).
447
448
  |----------|-----|
448
449
  | **GitHub** | [https://github.com/storionjs/storion](https://github.com/storionjs/storion) |
449
450
  | **npm** | [https://www.npmjs.com/package/@storion/storion](https://www.npmjs.com/package/@storion/storion) |
451
+ | **Storion Studio (Chrome)** | [Chrome Web Store](https://chromewebstore.google.com/detail/nhjidnpjlfnejdakbiccdhmphankkocm?utm_source=item-share-cb) |
450
452
  | **Issues** | [https://github.com/storionjs/storion/issues](https://github.com/storionjs/storion/issues) |
451
453
  | **License** | MIT |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storion/storion",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "description": "Framework-agnostic client-side database with localStorage, sessionStorage, and IndexedDB. Create databases, tables, save/fetch records, and run JSON queries.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",