@stratasync/y-doc 0.2.0 → 0.2.1

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/README.md CHANGED
@@ -1,10 +1,10 @@
1
1
  # @stratasync/y-doc
2
2
 
3
- Yjs CRDT utilities and integration for collaborative editing in the Done.
3
+ Yjs CRDT utilities and integration for collaborative editing.
4
4
 
5
5
  ## Overview
6
6
 
7
- sync-yjs provides Yjs document management and protocol utilities:
7
+ sync-y-doc provides Yjs document management and protocol utilities:
8
8
 
9
9
  - **Document management** — create and manage Yjs documents for collaborative fields
10
10
  - **Awareness protocol** — presence and cursor tracking across clients
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @stratasync/yjs - Yjs collaborative editing integration for Done.
2
+ * @stratasync/y-doc - Yjs collaborative editing integration.
3
3
  */
4
4
  export { YjsDocumentManager } from "./document-manager.js";
5
5
  export { clearPersistedYjsDocuments, createPersistedYjsPrefix, DEFAULT_PERSISTED_YJS_PREFIX, } from "./persistence.js";
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /* oxlint-disable check-tag-names */
2
2
  /**
3
- * @stratasync/yjs - Yjs collaborative editing integration for Done.
3
+ * @stratasync/y-doc - Yjs collaborative editing integration.
4
4
  */
5
5
  // biome-ignore-all lint/performance/noBarrelFile: This is the package's main entry point
6
6
  export { YjsDocumentManager } from "./document-manager.js";
package/package.json CHANGED
@@ -1,6 +1,11 @@
1
1
  {
2
2
  "name": "@stratasync/y-doc",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "https://github.com/stratasync/stratasync",
7
+ "directory": "packages/y-doc"
8
+ },
4
9
  "files": [
5
10
  "dist"
6
11
  ],
@@ -26,9 +31,6 @@
26
31
  "check-types": "tsc --noEmit",
27
32
  "test": "vitest run"
28
33
  },
29
- "dependencies": {
30
- "yjs": "^13.6.0"
31
- },
32
34
  "devDependencies": {
33
35
  "lefthook": "^2.1.4",
34
36
  "oxfmt": "^0.41.0",