From e871a6c438ffa1b6fddc0b2681202728df8407a1 Mon Sep 17 00:00:00 2001 From: Zixuan Chen Date: Fri, 10 Nov 2023 20:41:11 +0800 Subject: [PATCH] chore: bump loro-wasm loro-crdt version --- crates/loro-wasm/README.md | 3 +++ crates/loro-wasm/package.json | 14 +++++++++++--- loro-js/.npmignore | 4 ++++ loro-js/README.md | 8 ++++++++ loro-js/package.json | 15 ++++++++++++--- 5 files changed, 38 insertions(+), 6 deletions(-) create mode 100644 loro-js/.npmignore create mode 100644 loro-js/README.md diff --git a/crates/loro-wasm/README.md b/crates/loro-wasm/README.md index e69de29b..762256a8 100644 --- a/crates/loro-wasm/README.md +++ b/crates/loro-wasm/README.md @@ -0,0 +1,3 @@ +# Loro WASM + +Loro WASM is a WASM package of Loro. Learn more at https://loro.dev diff --git a/crates/loro-wasm/package.json b/crates/loro-wasm/package.json index 46c35da4..7193a11d 100644 --- a/crates/loro-wasm/package.json +++ b/crates/loro-wasm/package.json @@ -1,11 +1,19 @@ { "name": "loro-wasm", - "version": "0.3.0", - "description": "", + "version": "0.4.0", + "description": "Loro CRDTs is a high-performance CRDT framework that makes your app state synchronized, collaborative and maintainable effortlessly.", + "keywords": [ + "crdt", + "CRDTs", + "realtime", + "collaboration", + "sync", + "p2p" + ], "main": "nodejs/loro_wasm.js", "module": "bundler/loro_wasm.js", "scripts": {}, - "keywords": [], + "homepage": "https://loro.dev", "author": "", "license": "ISC", "devDependencies": { diff --git a/loro-js/.npmignore b/loro-js/.npmignore new file mode 100644 index 00000000..4a7f2e39 --- /dev/null +++ b/loro-js/.npmignore @@ -0,0 +1,4 @@ +tests/ +.vscode/ +node_modules/ +pnpm-lock.yaml diff --git a/loro-js/README.md b/loro-js/README.md new file mode 100644 index 00000000..b076cb9b --- /dev/null +++ b/loro-js/README.md @@ -0,0 +1,8 @@ +# loro-crdt + +Loro CRDTs is a high-performance CRDT framework. + +It makes your app state synchronized, collaborative and maintainable effortlessly. + +Learn more at https://loro.dev + diff --git a/loro-js/package.json b/loro-js/package.json index a0ca7bc2..ebf6f23d 100644 --- a/loro-js/package.json +++ b/loro-js/package.json @@ -1,7 +1,15 @@ { "name": "loro-crdt", - "version": "0.3.0", - "description": "", + "version": "0.4.0", + "description": "Loro CRDTs is a high-performance CRDT framework that makes your app state synchronized, collaborative and maintainable effortlessly.", + "keywords": [ + "crdt", + "CRDTs", + "realtime", + "collaboration", + "sync", + "p2p" + ], "main": "dist/loro.js", "module": "dist/loro.mjs", "typings": "dist/loro.d.ts", @@ -11,7 +19,8 @@ "test": "vitest run", "prepublish": "pnpm run build" }, - "author": "", + "author": "Loro", + "homepage": "https://loro.dev", "license": "ISC", "dependencies": { "loro-wasm": "workspace:*"