@turystack/entity 1.0.1 → 1.0.2

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 +33 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,33 @@
1
+ # @turystack/entity
2
+
3
+ Type-safe domain entities with stable SuperJSON serialization identifiers.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pnpm add @turystack/entity
9
+ ```
10
+
11
+ ### Peer dependencies
12
+
13
+ The host application provides these:
14
+
15
+ ```bash
16
+ pnpm add superjson
17
+ ```
18
+
19
+ ## Documentation
20
+
21
+ Options, API reference and examples:
22
+
23
+ **https://tury.dev/libs/entity**
24
+
25
+ ## Development
26
+
27
+ ```bash
28
+ pnpm install
29
+ pnpm typecheck
30
+ pnpm check
31
+ pnpm test
32
+ pnpm build
33
+ ```
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@turystack/entity",
3
3
  "description": "Type-safe domain entities with stable SuperJSON serialization identifiers.",
4
4
  "private": false,
5
- "version": "1.0.1",
5
+ "version": "1.0.2",
6
6
  "type": "module",
7
7
  "sideEffects": false,
8
8
  "main": "./dist/index.js",