valync 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 +8 -5
  2. package/package.json +34 -1
package/README.md CHANGED
@@ -17,14 +17,17 @@
17
17
 
18
18
  ## Installation
19
19
 
20
- #### React
20
+ #### Npm
21
21
  ```bash
22
- pnpm add @epikoder/valync-react @epikoder/valync-core ts-results-es
22
+ npm i valync
23
23
  ```
24
-
25
- #### Vue 3
24
+ #### yarn
25
+ ```bash
26
+ yarn add valync
27
+ ```
28
+ #### Bun
26
29
  ```bash
27
- pnpm add @epikoder/valync-vue @epikoder/valync-core ts-results-es
30
+ bun add valync
28
31
  ```
29
32
 
30
33
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valync",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "main": "dist/core/index.js",
5
5
  "types": "dist/core/index.d.ts",
6
6
  "exports": {
@@ -20,6 +20,39 @@
20
20
  "files": [
21
21
  "dist"
22
22
  ],
23
+ "keywords": [
24
+ "valync",
25
+ "async",
26
+ "async-data",
27
+ "async-state",
28
+ "state-management",
29
+ "data-fetching",
30
+ "api-response",
31
+ "cache",
32
+ "error-handling",
33
+ "abortcontroller",
34
+ "option-result",
35
+ "ts-results",
36
+ "typescript",
37
+ "client-side",
38
+ "promise-wrapper",
39
+ "http-client",
40
+ "react",
41
+ "react-hook",
42
+ "react-async",
43
+ "vue",
44
+ "vue3",
45
+ "vue-async",
46
+ "vue-composition-api",
47
+ "lightweight",
48
+ "monorepo",
49
+ "frontend-utils",
50
+ "data-hooks",
51
+ "custom-hook",
52
+ "swr",
53
+ "tanstack-query",
54
+ "epikoder"
55
+ ],
23
56
  "dependencies": {
24
57
  "ts-results-es": "^5.0.1"
25
58
  },