sorodb 0.0.0 → 0.0.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.
Files changed (2) hide show
  1. package/README.md +0 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -3,12 +3,9 @@
3
3
  SoroDB is an embedded document database for Node.js, built on SlateDB. Define a schema, store JavaScript documents, and query them with indexes, transactions, and snapshot-backed pagination.
4
4
 
5
5
  SoroDB is an ECMAScript module and requires Node.js 20 or later.
6
- TypeScript declarations are generated from the JSDoc annotations and included in the npm package.
7
6
 
8
7
  ## Quick start
9
8
 
10
- From this checkout, run `bun install --frozen-lockfile` first. Once SoroDB is published to npm, an application can install it with `npm install sorodb`. This example uses an in-memory store; its data disappears when the process ends.
11
-
12
9
  ```js
13
10
  import SoroDB from "sorodb";
14
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sorodb",
3
- "version": "0.0.0",
3
+ "version": "0.0.1",
4
4
  "description": "Embedded document database built on SlateDB",
5
5
  "license": "MIT",
6
6
  "files": [