@decaf-ts/core 0.5.43 → 0.5.44
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/lib/esm/index.d.ts +1 -1
- package/lib/esm/index.js +1 -1
- package/lib/index.cjs +1 -1
- package/lib/index.d.ts +1 -1
- package/package.json +6 -30
package/lib/esm/index.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export * from "./persistence";
|
|
|
20
20
|
* @const VERSION
|
|
21
21
|
* @memberOf module:core
|
|
22
22
|
*/
|
|
23
|
-
export declare const VERSION = "0.5.
|
|
23
|
+
export declare const VERSION = "0.5.43";
|
|
24
24
|
/**
|
|
25
25
|
* @description Stores the current package version
|
|
26
26
|
* @summary A constant representing the version of the core package
|
package/lib/esm/index.js
CHANGED
|
@@ -27,7 +27,7 @@ export * from "./persistence/index.js";
|
|
|
27
27
|
* @const VERSION
|
|
28
28
|
* @memberOf module:core
|
|
29
29
|
*/
|
|
30
|
-
export const VERSION = "0.5.
|
|
30
|
+
export const VERSION = "0.5.43";
|
|
31
31
|
/**
|
|
32
32
|
* @description Stores the current package version
|
|
33
33
|
* @summary A constant representing the version of the core package
|
package/lib/index.cjs
CHANGED
|
@@ -44,7 +44,7 @@ __exportStar(require("./persistence/index.cjs"), exports);
|
|
|
44
44
|
* @const VERSION
|
|
45
45
|
* @memberOf module:core
|
|
46
46
|
*/
|
|
47
|
-
exports.VERSION = "0.5.
|
|
47
|
+
exports.VERSION = "0.5.43";
|
|
48
48
|
/**
|
|
49
49
|
* @description Stores the current package version
|
|
50
50
|
* @summary A constant representing the version of the core package
|
package/lib/index.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export * from "./persistence";
|
|
|
20
20
|
* @const VERSION
|
|
21
21
|
* @memberOf module:core
|
|
22
22
|
*/
|
|
23
|
-
export declare const VERSION = "0.5.
|
|
23
|
+
export declare const VERSION = "0.5.43";
|
|
24
24
|
/**
|
|
25
25
|
* @description Stores the current package version
|
|
26
26
|
* @summary A constant representing the version of the core package
|
package/package.json
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@decaf-ts/core",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.44",
|
|
4
4
|
"description": "Core persistence module for the decaf framework",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
8
8
|
"require": "./lib/index.cjs",
|
|
9
|
-
"import": "./lib/esm/index.js"
|
|
9
|
+
"import": "./lib/esm/index.js",
|
|
10
|
+
"types": "./lib/index.d.ts"
|
|
10
11
|
},
|
|
11
12
|
"./ram": {
|
|
12
13
|
"require": "./lib/ram/index.cjs",
|
|
13
|
-
"import": "./lib/esm/ram/index.js"
|
|
14
|
+
"import": "./lib/esm/ram/index.js",
|
|
15
|
+
"types": "./lib/esm/index.d.ts"
|
|
14
16
|
}
|
|
15
17
|
},
|
|
16
18
|
"types": "lib/index.d.ts",
|
|
@@ -80,39 +82,13 @@
|
|
|
80
82
|
},
|
|
81
83
|
"homepage": "https://github.com/decaf-ts/core#readme",
|
|
82
84
|
"devDependencies": {
|
|
83
|
-
"@decaf-ts/utils": "latest"
|
|
84
|
-
"@eslint/js": "^9.25.1",
|
|
85
|
-
"@stylistic/eslint-plugin": "^4.2.0",
|
|
86
|
-
"@types/jest": "^29.5.14",
|
|
87
|
-
"clean-publish": "^5.1.0",
|
|
88
|
-
"dpdm": "^3.14.0",
|
|
89
|
-
"eslint": "^9.25.1",
|
|
90
|
-
"eslint-config-prettier": "^10.1.2",
|
|
91
|
-
"eslint-plugin-prettier": "^5.2.6",
|
|
92
|
-
"globals": "^16.0.0",
|
|
93
|
-
"jest": "^29.7.0",
|
|
94
|
-
"jest-html-reporters": "^3.1.7",
|
|
95
|
-
"jest-junit": "^16.0.0",
|
|
96
|
-
"jsdoc": "^4.0.4",
|
|
97
|
-
"jsdoc-mermaid": "^1.0.0",
|
|
98
|
-
"markdown-include": "^0.4.3",
|
|
99
|
-
"minimist": "^1.2.8",
|
|
100
|
-
"nodemon": "^3.1.9",
|
|
101
|
-
"npm-check-updates": "^18.0.0",
|
|
102
|
-
"prettier": "3.5.3",
|
|
103
|
-
"rimraf": "^6.0.1",
|
|
104
|
-
"ts-jest": "^29.3.2",
|
|
105
|
-
"ts-loader": "^9.5.2",
|
|
106
|
-
"ts-node": "^10.9.2",
|
|
107
|
-
"typescript": "^5.8.3",
|
|
108
|
-
"typescript-eslint": "^8.31.0"
|
|
85
|
+
"@decaf-ts/utils": "latest"
|
|
109
86
|
},
|
|
110
87
|
"peerDependencies": {
|
|
111
88
|
"@decaf-ts/db-decorators": "latest",
|
|
112
89
|
"@decaf-ts/decoration": "latest",
|
|
113
90
|
"@decaf-ts/decorator-validation": "latest",
|
|
114
91
|
"@decaf-ts/injectable-decorators": "latest",
|
|
115
|
-
"@decaf-ts/logging": "latest",
|
|
116
92
|
"@decaf-ts/reflection": "latest",
|
|
117
93
|
"@decaf-ts/transactional-decorators": "latest",
|
|
118
94
|
"reflect-metadata": "^0.2.1"
|