@alistt69/create-api 0.1.0 → 0.1.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.
- package/README.md +2 -0
- package/package.json +17 -4
package/README.md
CHANGED
|
@@ -9,6 +9,8 @@
|
|
|
9
9
|
> **One helper. No extra.**
|
|
10
10
|
> Light createApi with query, lazy query & mutation hooks.
|
|
11
11
|
|
|
12
|
+
[](https://www.npmjs.com/package/@alistt69/create-api)
|
|
13
|
+
[](https://nodejs.org/)
|
|
12
14
|
[](./LICENSE)
|
|
13
15
|
</td>
|
|
14
16
|
</tr>
|
package/package.json
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alistt69/create-api",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Lightweight createApi with query/mutation/lazy hooks",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
7
|
-
"files": [
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
8
10
|
"main": "./dist/index.js",
|
|
9
11
|
"types": "./dist/index.d.ts",
|
|
10
12
|
"exports": {
|
|
@@ -48,6 +50,17 @@
|
|
|
48
50
|
"bugs": {
|
|
49
51
|
"url": "https://github.com/alistt69/alistt69-create-api/issues"
|
|
50
52
|
},
|
|
51
|
-
"keywords": [
|
|
53
|
+
"keywords": [
|
|
54
|
+
"react",
|
|
55
|
+
"typescript",
|
|
56
|
+
"api",
|
|
57
|
+
"query",
|
|
58
|
+
"mutation",
|
|
59
|
+
"rtk-query",
|
|
60
|
+
"data-fetching"
|
|
61
|
+
],
|
|
62
|
+
"engines": {
|
|
63
|
+
"node": ">=18"
|
|
64
|
+
},
|
|
52
65
|
"license": "MIT"
|
|
53
|
-
}
|
|
66
|
+
}
|