simplentity 0.1.0 → 0.1.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 +3 -2
  2. package/package.json +6 -2
package/README.md CHANGED
@@ -9,7 +9,9 @@ It provides the implementation of type-safe entities and manipulation.
9
9
 
10
10
 
11
11
  ## Installation
12
- Coming soon...
12
+ ```shell
13
+ npm install simplentity
14
+ ```
13
15
 
14
16
  ## Usage
15
17
 
@@ -54,7 +56,6 @@ const name = user.get('name'); // 'John Doe'
54
56
  ## Todo
55
57
  - [ ] Add more built-in types
56
58
  - [ ] Validation
57
- - [ ] JSON serialization
58
59
  - [ ] Custom field types
59
60
  - [ ] Custom field validation
60
61
  - [ ] Custom field serialization
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simplentity",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "module": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -30,5 +30,9 @@
30
30
  },
31
31
  "bugs": {
32
32
  "url": "https://github.com/Lazialize/simplentity/issues"
33
- }
33
+ },
34
+ "keywords": [
35
+ "entity",
36
+ "type-safe"
37
+ ]
34
38
  }