atomirx 0.0.1 → 0.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 +1 -1
  2. package/package.json +17 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Atomirx
2
2
 
3
- **The Official, Opinionated, Batteries-Included Reactive State Management for TypeScript**
3
+ **Opinionated, Batteries-Included Reactive State Management**
4
4
 
5
5
  [![npm version](https://img.shields.io/npm/v/atomirx.svg?style=flat-square)](https://www.npmjs.com/package/atomirx)
6
6
  [![npm downloads](https://img.shields.io/npm/dm/atomirx.svg?style=flat-square)](https://www.npmjs.com/package/atomirx)
package/package.json CHANGED
@@ -1,6 +1,22 @@
1
1
  {
2
2
  "name": "atomirx",
3
- "version": "0.0.1",
3
+ "description": "Opinionated, Batteries-Included Reactive State Management",
4
+ "keywords": [
5
+ "reactive",
6
+ "state",
7
+ "management",
8
+ "atom",
9
+ "derived",
10
+ "effect"
11
+ ],
12
+ "author": "Gignuyen",
13
+ "license": "MIT",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/linq2js/atomirx"
17
+ },
18
+ "homepage": "https://github.com/linq2js/atomirx",
19
+ "version": "0.0.2",
4
20
  "type": "module",
5
21
  "main": "./dist/atomirx.umd.cjs",
6
22
  "module": "./dist/atomirx.js",