@rool-dev/svelte 0.1.0-dev.b38eb99 → 0.1.1-dev.0bedc35

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 +7 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,17 +1,15 @@
1
1
  # Rool Svelte
2
2
 
3
- Svelte 5 runes for Rool Spaces. Transforms the event-based SDK into reactive state using `$state`.
3
+ Svelte 5 bindings for Rool Spaces. Transforms the event-based SDK into reactive state using `$state` runes.
4
4
 
5
- **Requires Svelte 5.**
5
+ **Requires Svelte 5.** For core concepts (objects, relations, AI placeholders, undo/redo), see the [SDK documentation](https://docs.rool.dev/sdk/).
6
6
 
7
7
  ## Installation
8
8
 
9
9
  ```bash
10
- npm install @rool-dev/svelte @rool-dev/sdk
10
+ npm install @rool-dev/svelte
11
11
  ```
12
12
 
13
- Requires `@rool-dev/sdk` as a peer dependency.
14
-
15
13
  ## Quick Start
16
14
 
17
15
  ```svelte
@@ -265,6 +263,10 @@ import type {
265
263
  } from '@rool-dev/svelte';
266
264
  ```
267
265
 
266
+ ## Examples
267
+
268
+ See the [svelte-chat example](https://github.com/rool-dev/rool-js/tree/main/examples/svelte-chat) for a complete working app.
269
+
268
270
  ## License
269
271
 
270
272
  MIT - see [LICENSE](../../LICENSE) for details.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rool-dev/svelte",
3
- "version": "0.1.0-dev.b38eb99",
3
+ "version": "0.1.1-dev.0bedc35",
4
4
  "description": "Svelte 5 runes for Rool Spaces",
5
5
  "packageManager": "pnpm@10.17.1",
6
6
  "type": "module",