@dchighs/dc-config 0.0.1 → 0.0.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.
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export {
|
|
1
|
+
import { ConfigFilter } from "@dchighs/dc-core";
|
|
2
|
+
export { ConfigFilter };
|
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ConfigFilter = void 0;
|
|
4
4
|
const dc_core_1 = require("@dchighs/dc-core");
|
|
5
|
-
Object.defineProperty(exports, "ConfigFilter", { enumerable: true, get: function () { return dc_core_1.
|
|
5
|
+
Object.defineProperty(exports, "ConfigFilter", { enumerable: true, get: function () { return dc_core_1.ConfigFilter; } });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dchighs/dc-config",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "A library to handle configuration for Dragon City.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -28,7 +28,9 @@
|
|
|
28
28
|
"typescript": "^5.9.3"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@dchighs/dc-core": "^0.0.2",
|
|
32
31
|
"axios": "^1.13.2"
|
|
32
|
+
},
|
|
33
|
+
"peerDependencies": {
|
|
34
|
+
"@dchighs/dc-core": "^0.3.0"
|
|
33
35
|
}
|
|
34
36
|
}
|