@daiso-tech/core 0.28.0 → 0.29.0
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 +8 -2
- package/dist/cache/implementations/derivables/cache/cache.d.ts +5 -0
- package/dist/cache/implementations/derivables/cache/cache.js +7 -0
- package/dist/cache/implementations/derivables/cache/cache.js.map +1 -1
- package/dist/cache/implementations/derivables/cache-factory/cache-factory.d.ts +37 -1
- package/dist/cache/implementations/derivables/cache-factory/cache-factory.js +37 -1
- package/dist/cache/implementations/derivables/cache-factory/cache-factory.js.map +1 -1
- package/dist/event-bus/contracts/event-bus.contract.d.ts +5 -0
- package/dist/event-bus/implementations/derivables/event-bus/event-bus.d.ts +1 -0
- package/dist/event-bus/implementations/derivables/event-bus/event-bus.js +28 -4
- package/dist/event-bus/implementations/derivables/event-bus/event-bus.js.map +1 -1
- package/dist/event-bus/implementations/derivables/event-bus/listener-store.d.ts +2 -2
- package/dist/event-bus/implementations/derivables/event-bus/listener-store.js +9 -7
- package/dist/event-bus/implementations/derivables/event-bus/listener-store.js.map +1 -1
- package/dist/event-bus/implementations/test-utilities/event-bus.test-suite.js +453 -4
- package/dist/event-bus/implementations/test-utilities/event-bus.test-suite.js.map +1 -1
- package/dist/lock/implementations/derivables/lock-provider/lock-provider.d.ts +9 -0
- package/dist/lock/implementations/derivables/lock-provider/lock-provider.js +13 -4
- package/dist/lock/implementations/derivables/lock-provider/lock-provider.js.map +1 -1
- package/dist/lock/implementations/derivables/lock-provider/lock-serde-transformer.d.ts +2 -0
- package/dist/lock/implementations/derivables/lock-provider/lock-serde-transformer.js +8 -2
- package/dist/lock/implementations/derivables/lock-provider/lock-serde-transformer.js.map +1 -1
- package/dist/lock/implementations/derivables/lock-provider/lock.d.ts +5 -0
- package/dist/lock/implementations/derivables/lock-provider/lock.js +7 -0
- package/dist/lock/implementations/derivables/lock-provider/lock.js.map +1 -1
- package/dist/lock/implementations/derivables/lock-provider-factory/lock-provider-factory.js +1 -0
- package/dist/lock/implementations/derivables/lock-provider-factory/lock-provider-factory.js.map +1 -1
- package/package.json +85 -25
package/package.json
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@daiso-tech/core",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.29.0",
|
|
5
5
|
"author": "Yousif Abdulkarim",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"homepage": "https://yousif-khalil-abdulkarim.github.io/daiso-core/modules.html",
|
|
9
|
+
"description": "The library offers flexible, framework-agnostic solutions for modern web applications, built on adaptable components that integrate seamlessly with popular frameworks like Next Js.",
|
|
9
10
|
"repository": {
|
|
10
11
|
"type": "git",
|
|
11
|
-
"url": "https://github.com/yousif-khalil-abdulkarim/daiso-core.git"
|
|
12
|
+
"url": "git+https://github.com/yousif-khalil-abdulkarim/daiso-core.git"
|
|
12
13
|
},
|
|
13
14
|
"keywords": [
|
|
14
15
|
"Async collection",
|
|
@@ -42,29 +43,85 @@
|
|
|
42
43
|
"./dist"
|
|
43
44
|
],
|
|
44
45
|
"exports": {
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
"
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
},
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
},
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
},
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
46
|
+
"./async": {
|
|
47
|
+
"types": "./dist/async/_module-exports.d.ts",
|
|
48
|
+
"import": "./dist/async/_module-exports.js"
|
|
49
|
+
},
|
|
50
|
+
"./cache": {
|
|
51
|
+
"types": "./dist/cache/implementations/derivables/_module-exports.d.ts",
|
|
52
|
+
"import": "./dist/cache/implementations/derivables/_module-exports.js"
|
|
53
|
+
},
|
|
54
|
+
"./cache/contracts": {
|
|
55
|
+
"types": "./dist/cache/contracts/_module-exports.d.ts",
|
|
56
|
+
"import": "./dist/cache/contracts/_module-exports.js"
|
|
57
|
+
},
|
|
58
|
+
"./cache/adapters": {
|
|
59
|
+
"types": "./dist/cache/implementations/adapters/_module-exports.d.ts",
|
|
60
|
+
"import": "./dist/cache/implementations/adapters/_module-exports.js"
|
|
61
|
+
},
|
|
62
|
+
"./cache/test-utilities": {
|
|
63
|
+
"types": "./dist/cache/implementations/test-utilities/_module-exports.d.ts",
|
|
64
|
+
"import": "./dist/cache/implementations/test-utilities/_module-exports.js"
|
|
65
|
+
},
|
|
66
|
+
"./collection": {
|
|
67
|
+
"types": "./dist/collection/implementations/_module-exports.d.ts",
|
|
68
|
+
"import": "./dist/collection/implementations/_module-exports.js"
|
|
69
|
+
},
|
|
70
|
+
"./collection/contracts": {
|
|
71
|
+
"types": "./dist/collection/contracts/_module-exports.d.ts",
|
|
72
|
+
"import": "./dist/collection/contracts/_module-exports.js"
|
|
73
|
+
},
|
|
74
|
+
"./event-bus": {
|
|
75
|
+
"types": "./dist/event-bus/implementations/derivables/_module-exports.d.ts",
|
|
76
|
+
"import": "./dist/event-bus/implementations/derivables/_module-exports.js"
|
|
77
|
+
},
|
|
78
|
+
"./event-bus/contracts": {
|
|
79
|
+
"types": "./dist/event-bus/contracts/_module-exports.d.ts",
|
|
80
|
+
"import": "./dist/event-bus/contracts/_module-exports.js"
|
|
81
|
+
},
|
|
82
|
+
"./event-bus/adapters": {
|
|
83
|
+
"types": "./dist/event-bus/implementations/adapters/_module-exports.d.ts",
|
|
84
|
+
"import": "./dist/event-bus/implementations/adapters/_module-exports.js"
|
|
85
|
+
},
|
|
86
|
+
"./event-bus/test-utilities": {
|
|
87
|
+
"types": "./dist/event-bus/implementations/test-utilities/_module-exports.d.ts",
|
|
88
|
+
"import": "./dist/event-bus/implementations/test-utilities/_module-exports.js"
|
|
89
|
+
},
|
|
90
|
+
"./lock": {
|
|
91
|
+
"types": "./dist/lock/implementations/derivables/_module-exports.d.ts",
|
|
92
|
+
"import": "./dist/lock/implementations/derivables/_module-exports.js"
|
|
93
|
+
},
|
|
94
|
+
"./lock/contracts": {
|
|
95
|
+
"types": "./dist/lock/contracts/_module-exports.d.ts",
|
|
96
|
+
"import": "./dist/lock/contracts/_module-exports.js"
|
|
97
|
+
},
|
|
98
|
+
"./lock/adapters": {
|
|
99
|
+
"types": "./dist/lock/implementations/adapters/_module-exports.d.ts",
|
|
100
|
+
"import": "./dist/lock/implementations/adapters/_module-exports.js"
|
|
101
|
+
},
|
|
102
|
+
"./lock/test-utilities": {
|
|
103
|
+
"types": "./dist/lock/implementations/test-utilities/_module-exports.d.ts",
|
|
104
|
+
"import": "./dist/lock/implementations/test-utilities/_module-exports.js"
|
|
105
|
+
},
|
|
106
|
+
"./serde": {
|
|
107
|
+
"types": "./dist/serde/implementations/derivables/_module-exports.d.ts",
|
|
108
|
+
"import": "./dist/serde/implementations/derivables/_module-exports.js"
|
|
109
|
+
},
|
|
110
|
+
"./serde/contracts": {
|
|
111
|
+
"types": "./dist/serde/contracts/_module-exports.d.ts",
|
|
112
|
+
"import": "./dist/serde/contracts/_module-exports.js"
|
|
113
|
+
},
|
|
114
|
+
"./serde/adapters": {
|
|
115
|
+
"types": "./dist/serde/implementations/adapters/_module-exports.d.ts",
|
|
116
|
+
"import": "./dist/serde/implementations/adapters/_module-exports.js"
|
|
117
|
+
},
|
|
118
|
+
"./serde/test-utilities": {
|
|
119
|
+
"types": "./dist/serde/implementations/test-utilities/_module-exports.d.ts",
|
|
120
|
+
"import": "./dist/serde/implementations/test-utilities/_module-exports.js"
|
|
121
|
+
},
|
|
122
|
+
"./utilities": {
|
|
123
|
+
"types": "./dist/utilities/_module-exports.d.ts",
|
|
124
|
+
"import": "./dist/utilities/_module-exports.js"
|
|
68
125
|
}
|
|
69
126
|
},
|
|
70
127
|
"scripts": {
|
|
@@ -74,6 +131,8 @@
|
|
|
74
131
|
"lint": "npx eslint \"**/*.{js,jsx,ts,tsx}\"",
|
|
75
132
|
"lint:fix": "npx eslint \"**/*.{js,jsx,ts,tsx}\" --fix",
|
|
76
133
|
"build": "npx rimraf dist && npx tsc --project \"./tsconfig.build.json\" && npx tsc-alias -p \"./tsconfig.build.json\"",
|
|
134
|
+
"publint": "npm run build && npx publint",
|
|
135
|
+
"check:all": "npm run check && npm run lint && npm run test && npm run publint",
|
|
77
136
|
"docs": "npx typedoc",
|
|
78
137
|
"release": "npm run build && npx changeset publish"
|
|
79
138
|
},
|
|
@@ -98,6 +157,7 @@
|
|
|
98
157
|
"eslint-plugin-vitest": "^0.5.4",
|
|
99
158
|
"ioredis": "^5.4.1",
|
|
100
159
|
"mongodb": "^6.10.0",
|
|
160
|
+
"publint": "^0.3.8",
|
|
101
161
|
"rimraf": "^6.0.1",
|
|
102
162
|
"tsc-alias": "^1.8.10",
|
|
103
163
|
"typedoc": "^0.26.5",
|