@daiso-tech/core 0.1.3 → 0.1.4
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 +3 -1
- package/package.json +13 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
## Install
|
|
4
4
|
```bash
|
|
5
|
-
npm install @
|
|
5
|
+
npm install @daiso-tech/core
|
|
6
6
|
```
|
|
7
7
|
|
|
8
8
|
## Description
|
|
@@ -27,3 +27,5 @@ In the future the following components will be added:
|
|
|
27
27
|
* Notification adapters that provides a single interface for quickly notifications to your users via email, Slack, SMS and in-app.
|
|
28
28
|
|
|
29
29
|
This library is heavily inspired laravel but built in modular way where you can choose which part to use.
|
|
30
|
+
|
|
31
|
+
## Visit the [docs](https://yousif-khalil-abdulkarim.github.io/daiso-core/docs/) for more information!
|
package/package.json
CHANGED
|
@@ -1,12 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@daiso-tech/core",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.4",
|
|
5
5
|
"author": "Yousif Abdulkarim",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"main": "./dist/cjs/_module.js",
|
|
8
8
|
"module": "./dist/esm/_module.js",
|
|
9
9
|
"types": "./dist/types/_module.d.ts",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/yousif-khalil-abdulkarim/daiso-core.git"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"Collections",
|
|
16
|
+
"Arrays",
|
|
17
|
+
"Iterables",
|
|
18
|
+
"Iterable",
|
|
19
|
+
"Async iterables",
|
|
20
|
+
"AsyncIterable"
|
|
21
|
+
],
|
|
10
22
|
"files": [
|
|
11
23
|
"./dist"
|
|
12
24
|
],
|