kindstore 0.1.2 → 0.1.3

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 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -10,6 +10,13 @@ Requires Bun at runtime because kindstore uses `bun:sqlite`.
10
10
  bun add kindstore zod
11
11
  ```
12
12
 
13
+ The [skills.sh](https://skills.sh/) command line tool makes it easy to teach your
14
+ favorite coding agent how to use Kindstore:
15
+
16
+ ```sh
17
+ npx skills add alloc/kindstore
18
+ ```
19
+
13
20
  ```ts
14
21
  import { z } from "zod";
15
22
  import { kind, kindstore } from "kindstore";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kindstore",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "A lightweight, typed document store on SQLite with Zod schemas, indexed queries, and explicit migrations.",
5
5
  "license": "MIT",
6
6
  "author": "Alec Larson",
@@ -30,7 +30,7 @@
30
30
  },
31
31
  "sideEffects": false,
32
32
  "engines": {
33
- "bun": ">=1.3.11"
33
+ "bun": ">=1.0.7"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "zod": "^4.0.0"