@intlayer/core 7.0.3-canary.1 → 7.0.3
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/dist/types/interpreter/getNesting.d.ts +1 -1
- package/dist/types/interpreter/getNesting.d.ts.map +1 -1
- package/dist/types/transpiler/condition/condition.d.ts +3 -3
- package/dist/types/transpiler/condition/condition.d.ts.map +1 -1
- package/dist/types/transpiler/enumeration/enumeration.d.ts +3 -3
- package/dist/types/transpiler/enumeration/enumeration.d.ts.map +1 -1
- package/dist/types/transpiler/gender/gender.d.ts +3 -3
- package/dist/types/transpiler/gender/gender.d.ts.map +1 -1
- package/dist/types/transpiler/insertion/insertion.d.ts +2 -2
- package/dist/types/transpiler/insertion/insertion.d.ts.map +1 -1
- package/dist/types/transpiler/markdown/markdown.d.ts +1 -1
- package/dist/types/transpiler/markdown/markdown.d.ts.map +1 -1
- package/dist/types/transpiler/nesting/nesting.d.ts +1 -1
- package/dist/types/transpiler/nesting/nesting.d.ts.map +1 -1
- package/dist/types/transpiler/translation/translation.d.ts +1 -1
- package/dist/types/transpiler/translation/translation.d.ts.map +1 -1
- package/package.json +17 -17
|
@@ -3,7 +3,7 @@ import { DeepTransformContent, IInterpreterPluginState, NodeProps } from "./getC
|
|
|
3
3
|
import { DictionaryKeys, DictionaryRegistryContent, GetSubPath } from "@intlayer/types";
|
|
4
4
|
|
|
5
5
|
//#region src/interpreter/getNesting.d.ts
|
|
6
|
-
type GetNestingResult<K
|
|
6
|
+
type GetNestingResult<K extends DictionaryKeys, P = undefined, S = IInterpreterPluginState> = GetSubPath<DeepTransformContent<DictionaryRegistryContent<K>, S>, P>;
|
|
7
7
|
/**
|
|
8
8
|
* Allow to extract the content of another dictionary.
|
|
9
9
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getNesting.d.ts","names":[],"sources":["../../../src/interpreter/getNesting.ts"],"sourcesContent":[],"mappings":";;;;;KAaY,
|
|
1
|
+
{"version":3,"file":"getNesting.d.ts","names":[],"sources":["../../../src/interpreter/getNesting.ts"],"sourcesContent":[],"mappings":";;;;;KAaY,2BACA,mCAEN,2BACF,WAAW,qBAAqB,0BAA0B,IAAI,IAAI;;AAJtE;;;;;;;;AAII,cAWS,UAXT,EAAA,CAAA,UAWiC,cAXjC,EAAA,CAAA,CAAA,CAAA,aAAA,EAYa,CAZb,EAAA,IAAA,CAAA,EAaK,CAbL,SAae,gBAbf,CAagC,CAbhC,CAAA,GAaqC,CAbrC,GAAA,KAAA,EAAA,KAAA,CAAA,EAcM,SAdN,EAAA,GAeD,gBAfC,CAegB,CAfhB,EAemB,CAfnB,CAAA"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { NodeType, TypedNodeModel } from "@intlayer/types";
|
|
2
2
|
|
|
3
3
|
//#region src/transpiler/condition/condition.d.ts
|
|
4
|
-
type ConditionContentStates<Content
|
|
5
|
-
fallback?: Content
|
|
4
|
+
type ConditionContentStates<Content> = Record<`${boolean}`, Content> & {
|
|
5
|
+
fallback?: Content;
|
|
6
6
|
};
|
|
7
|
-
type ConditionContent<Content
|
|
7
|
+
type ConditionContent<Content = unknown> = TypedNodeModel<NodeType.Condition, ConditionContentStates<Content>>;
|
|
8
8
|
/**
|
|
9
9
|
* Function intended to be used to build intlayer dictionaries.
|
|
10
10
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"condition.d.ts","names":[],"sources":["../../../../src/transpiler/condition/condition.ts"],"sourcesContent":[],"mappings":";;;KAEY,
|
|
1
|
+
{"version":3,"file":"condition.d.ts","names":[],"sources":["../../../../src/transpiler/condition/condition.ts"],"sourcesContent":[],"mappings":";;;KAEY,kCAAkC,qBAAqB;aACtD;AADb,CAAA;AAAmE,KAIvD,gBAJuD,CAAA,UAAA,OAAA,CAAA,GAIjB,cAJiB,CAKjE,QAAA,CAAS,SALwD,EAMjE,sBANiE,CAM1C,OAN0C,CAAA,CAAA;;;;AAInE;;;;;;AAGE;;;;;;;;cAmBI,+BAAgC,uBAAuB,aAAQ,eAAA,QAAA,CAAA,WAAA,uBAAA"}
|
|
@@ -11,10 +11,10 @@ type SuperiorOrEqual = `>=${Numbers}`;
|
|
|
11
11
|
type Inferior = `<${Numbers}`;
|
|
12
12
|
type InferiorOrEqual = `<=${Numbers}`;
|
|
13
13
|
type EnterFormat = Equal | EqualString | Superior | SuperiorOrEqual | Inferior | InferiorOrEqual;
|
|
14
|
-
type EnumerationContentState<Content
|
|
15
|
-
fallback?: Content
|
|
14
|
+
type EnumerationContentState<Content> = Partial<Record<EnterFormat, Content>> & {
|
|
15
|
+
fallback?: Content;
|
|
16
16
|
};
|
|
17
|
-
type EnumerationContent<Content
|
|
17
|
+
type EnumerationContent<Content = unknown> = TypedNodeModel<NodeType.Enumeration, EnumerationContentState<Content>>;
|
|
18
18
|
/**
|
|
19
19
|
* Function intended to be used to build intlayer dictionaries.
|
|
20
20
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"enumeration.d.ts","names":[],"sources":["../../../../src/transpiler/enumeration/enumeration.ts"],"sourcesContent":[],"mappings":";;;KAEK,QAAA;KACA,QAAA;AAH2E,KAI3E,OAAA,GAAU,QAFF,GAEa,QAFb;AAAA,KAIR,KAAA,GAAQ,OAHA;AAAA,KAIR,WAAA,GAHO,IAGW,OAHR,EAAA;AAAmB,KAI7B,QAAA,GAFK,IAEU,OAFP,EAAA;AAAO,KAGf,eAAA,GAFW,KAEY,OAFL,EAAA;AAAO,KAGzB,QAAA,GAFQ,IAEO,OAFA,EAAA;AAAO,KAGtB,eAAA,GAFe,KAEQ,OAFA,EAAA;AACvB,KAGO,WAAA,GACR,KAJgB,GAKhB,WALuB,GAMvB,QANuB,GAOvB,eAPuB,GAQvB,QARuB,GASvB,eATuB;AACtB,KAUO,uBAVgB,CAAA,
|
|
1
|
+
{"version":3,"file":"enumeration.d.ts","names":[],"sources":["../../../../src/transpiler/enumeration/enumeration.ts"],"sourcesContent":[],"mappings":";;;KAEK,QAAA;KACA,QAAA;AAH2E,KAI3E,OAAA,GAAU,QAFF,GAEa,QAFb;AAAA,KAIR,KAAA,GAAQ,OAHA;AAAA,KAIR,WAAA,GAHO,IAGW,OAHR,EAAA;AAAmB,KAI7B,QAAA,GAFK,IAEU,OAFP,EAAA;AAAO,KAGf,eAAA,GAFW,KAEY,OAFL,EAAA;AAAO,KAGzB,QAAA,GAFQ,IAEO,OAFA,EAAA;AAAO,KAGtB,eAAA,GAFe,KAEQ,OAFA,EAAA;AACvB,KAGO,WAAA,GACR,KAJgB,GAKhB,WALuB,GAMvB,QANuB,GAOvB,eAPuB,GAQvB,QARuB,GASvB,eATuB;AACtB,KAUO,uBAVgB,CAAA,OAAO,CAAA,GAUY,OAVZ,CAWjC,MAXiC,CAW1B,WAX0B,EAWb,OAXa,CAAA,CAAA,GAAA;EAEvB,QAAA,CAAA,EAWC,OAXU;CACnB;AACA,KAYQ,kBAZR,CAAA,UAAA,OAAA,CAAA,GAYgD,cAZhD,CAaF,QAAA,CAAS,WAbP,EAcF,uBAdE,CAcsB,OAdtB,CAAA,CAAA;;;;;;AAMJ;;;;;;;AAMA;;;;;;AAGE;cAqBI,WAA0D,EAAA,CAAA,OAAA,CAAA,CAAA,OAAA,CAAA,EAAxB,uBAAwB,CAAA,OAAA,CAAA,EAAA,GAAQ,cAAR,CAAQ,QAAA,CAAA,WAAR,EAAQ,uBAAR,CAAQ,OAAR,CAAA,EAAA,CAAA,CAAA,CAAA"}
|
|
@@ -2,10 +2,10 @@ import { NodeType, TypedNodeModel } from "@intlayer/types";
|
|
|
2
2
|
|
|
3
3
|
//#region src/transpiler/gender/gender.d.ts
|
|
4
4
|
type Gender = 'male' | 'female' | 'fallback';
|
|
5
|
-
type GenderContentStates<Content
|
|
6
|
-
fallback?: Content
|
|
5
|
+
type GenderContentStates<Content> = Record<`${Gender}`, Content> & {
|
|
6
|
+
fallback?: Content;
|
|
7
7
|
};
|
|
8
|
-
type GenderContent<Content
|
|
8
|
+
type GenderContent<Content = unknown> = TypedNodeModel<NodeType.Gender, GenderContentStates<Content>>;
|
|
9
9
|
/**
|
|
10
10
|
* Function intended to be used to build intlayer dictionaries.
|
|
11
11
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gender.d.ts","names":[],"sources":["../../../../src/transpiler/gender/gender.ts"],"sourcesContent":[],"mappings":";;;KAEY,MAAA;KAEA
|
|
1
|
+
{"version":3,"file":"gender.d.ts","names":[],"sources":["../../../../src/transpiler/gender/gender.ts"],"sourcesContent":[],"mappings":";;;KAEY,MAAA;KAEA,+BAA+B,UAAU,UAAU;EAFnD,QAAA,CAAM,EAGL,OAHK;AAElB,CAAA;AAAqD,KAIzC,aAJyC,CAAA,UAAA,OAAA,CAAA,GAIN,cAJM,CAKnD,QAAA,CAAS,MAL0C,EAMnD,mBANmD,CAM/B,OAN+B,CAAA,CAAA;;;;;AAIrD;;;;;;AAGE;;;;;;;cAmBI,MAAyD,EAAA,CAAA,OAAA,CAAA,CAAA,OAAA,CAAA,EAA5B,mBAA4B,CAAR,OAAQ,CAAA,EAAA,GAAA,cAAA,CAAA,QAAA,CAAA,MAAA,EAAA,mBAAA,CAAA,OAAA,CAAA,EAAA,CAAA,CAAA,CAAA"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { NodeType, TypedNodeModel } from "@intlayer/types";
|
|
2
2
|
|
|
3
3
|
//#region src/transpiler/insertion/insertion.d.ts
|
|
4
|
-
type InsertionContentConstructor<Content
|
|
5
|
-
type InsertionContent<Content
|
|
4
|
+
type InsertionContentConstructor<Content = unknown, T extends Record<string, any> = {}> = TypedNodeModel<NodeType.Insertion, Content, T>;
|
|
5
|
+
type InsertionContent<Content = unknown> = InsertionContentConstructor<Content, {
|
|
6
6
|
fields: string[];
|
|
7
7
|
}>;
|
|
8
8
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"insertion.d.ts","names":[],"sources":["../../../../src/transpiler/insertion/insertion.ts"],"sourcesContent":[],"mappings":";;;KAGY,
|
|
1
|
+
{"version":3,"file":"insertion.d.ts","names":[],"sources":["../../../../src/transpiler/insertion/insertion.ts"],"sourcesContent":[],"mappings":";;;KAGY,yDAEA,4BACR,eAAe,QAAA,CAAS,WAAW,SAAS;KAEpC,sCAAsC,4BAChD;EANU,MAAA,EAAA,MAAA,EAAA;CAEA,CAAA;;;;;;AAGZ;AAKE;;;;;;cAcI,wCACK,YACR,iBAAiB"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { NodeType, TypedNodeModel } from "@intlayer/types";
|
|
2
2
|
|
|
3
3
|
//#region src/transpiler/markdown/markdown.d.ts
|
|
4
|
-
type MarkdownContentConstructor<T extends Record<string, any> = {}, Content
|
|
4
|
+
type MarkdownContentConstructor<T extends Record<string, any> = {}, Content = unknown> = TypedNodeModel<NodeType.Markdown, Content, T>;
|
|
5
5
|
type MarkdownContent<_Content = unknown> = MarkdownContentConstructor<{
|
|
6
6
|
metadata?: Record<string, any>;
|
|
7
7
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"markdown.d.ts","names":[],"sources":["../../../../src/transpiler/markdown/markdown.ts"],"sourcesContent":[],"mappings":";;;KAIY,qCACA,
|
|
1
|
+
{"version":3,"file":"markdown.d.ts","names":[],"sources":["../../../../src/transpiler/markdown/markdown.ts"],"sourcesContent":[],"mappings":";;;KAIY,qCACA,+CAER,eAAe,QAAA,CAAS,UAAU,SAAS;KAEnC,sCAAsC;EALtC,QAAA,CAAA,EAMC,MAND,CAAA,MAAA,EAAA,GAA0B,CAAA;CAC1B,CAAA;;;;;;AAIZ;AAEG;;;;;;cA2BG,uCAAwC,YAAU"}
|
|
@@ -44,7 +44,7 @@ type NestedContent<K$1 extends DictionaryKeys = never> = TypedNodeModel<NodeType
|
|
|
44
44
|
* The order of the keys will define the priority of the content.
|
|
45
45
|
*
|
|
46
46
|
*/
|
|
47
|
-
declare const nesting: <K extends DictionaryKeys>(dictionaryKey: K, path?: ValidDotPathsFor<K>) => NestedContent<K>;
|
|
47
|
+
declare const nesting: <K$1 extends DictionaryKeys>(dictionaryKey: K$1, path?: ValidDotPathsFor<K$1>) => NestedContent<K$1>;
|
|
48
48
|
//#endregion
|
|
49
49
|
export { DotPath, NestedContent, NestedContentState, ValidDotPathsFor, nesting as nest };
|
|
50
50
|
//# sourceMappingURL=nesting.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nesting.d.ts","names":[],"sources":["../../../../src/transpiler/nesting/nesting.ts"],"sourcesContent":[],"mappings":";;;;;;AAeA;;;;;AAIa,KAJD,OAIC,CAAA,CAAA,CAAA,GAJY,CAIZ,SAAA,MAAA,GAAA,QAAS,MAFJ,CAEI,GAAA,CAAA,MAAA,GAAA,MAAA,CAAA,GAFoB,CAEpB,CAFsB,CAEtB,CAAA,SAAA,MAAA;AAAA;AAAa,GAAtB,CAAsB,EAAA,GAAA,GAAb,CAAa,IAAR,OAAQ,CAAA,CAAA,CAAE,CAAF,CAAA,CAAA,EAAA,GAAA,GACtB,CADsB,EAAA,EAAE,CAAA,MAEzB,CAFyB,GAAA,CAAA,MAAA,GAAA,MAAA,CAAA,CAAA,GAAA,KAAA;KAKhC,WALsB,CAAA,CAAA,EAAA,IAAA,EAAA,EAAA,CAAA,GAKK,CALL,SAKe,IALf,GAMvB,EANuB,GAOvB,CAPuB,SAAA,MAAA,GAAA,QACd,MAOO,CAPP,GAOW,WAPX,CAOuB,CAPvB,CAOyB,CAPzB,CAAA,EAO6B,IAP7B,EAOmC,EAPnC,CAAA,EACD,GAON,CAPM;;AAGP,KAOO,gBAPI,CAAA,YAOuB,cAPvB,CAAA,GAOyC,OAPzC,CAQd,WARc,CASZ,oBATY,CASS,yBATT,CASmC,GATnC,CAAA,CAAA,EAAA;EAAgB,IAAA,EAAA,GAAA;EAAU,KAAA,EAAA,GAAA;EACtC,GAAA,EAAA,GAAA;CACA,EAAA,MAAA,CAAA,CAAA;AACgB,KAiBR,kBAjBQ,CAAA,YAiBqB,cAjBrB,CAAA,GAAA;EAAgB,aAAA,EAkBnB,GAlBmB;EAAE;;;;;EAC/B,IAAA,CAAA,EAwBE,gBAxBF,CAwBmB,GAxBnB,CAAA;AAGP,CAAA;AAAuC,KAwB3B,aAxB2B,CAAA,YAwBH,cAxBG,GAAA,KAAA,CAAA,GAwBuB,cAxBvB,CAyBrC,QAAA,CAAS,MAzB4B,EA0BrC,kBA1BqC,CA0BlB,GA1BkB,CAAA,CAAA;;;;;;;AAavC;;;;;;AAWA;;;cAoBM,OAlBe,EAAA,CAAA,
|
|
1
|
+
{"version":3,"file":"nesting.d.ts","names":[],"sources":["../../../../src/transpiler/nesting/nesting.ts"],"sourcesContent":[],"mappings":";;;;;;AAeA;;;;;AAIa,KAJD,OAIC,CAAA,CAAA,CAAA,GAJY,CAIZ,SAAA,MAAA,GAAA,QAAS,MAFJ,CAEI,GAAA,CAAA,MAAA,GAAA,MAAA,CAAA,GAFoB,CAEpB,CAFsB,CAEtB,CAAA,SAAA,MAAA;AAAA;AAAa,GAAtB,CAAsB,EAAA,GAAA,GAAb,CAAa,IAAR,OAAQ,CAAA,CAAA,CAAE,CAAF,CAAA,CAAA,EAAA,GAAA,GACtB,CADsB,EAAA,EAAE,CAAA,MAEzB,CAFyB,GAAA,CAAA,MAAA,GAAA,MAAA,CAAA,CAAA,GAAA,KAAA;KAKhC,WALsB,CAAA,CAAA,EAAA,IAAA,EAAA,EAAA,CAAA,GAKK,CALL,SAKe,IALf,GAMvB,EANuB,GAOvB,CAPuB,SAAA,MAAA,GAAA,QACd,MAOO,CAPP,GAOW,WAPX,CAOuB,CAPvB,CAOyB,CAPzB,CAAA,EAO6B,IAP7B,EAOmC,EAPnC,CAAA,EACD,GAON,CAPM;;AAGP,KAOO,gBAPI,CAAA,YAOuB,cAPvB,CAAA,GAOyC,OAPzC,CAQd,WARc,CASZ,oBATY,CASS,yBATT,CASmC,GATnC,CAAA,CAAA,EAAA;EAAgB,IAAA,EAAA,GAAA;EAAU,KAAA,EAAA,GAAA;EACtC,GAAA,EAAA,GAAA;CACA,EAAA,MAAA,CAAA,CAAA;AACgB,KAiBR,kBAjBQ,CAAA,YAiBqB,cAjBrB,CAAA,GAAA;EAAgB,aAAA,EAkBnB,GAlBmB;EAAE;;;;;EAC/B,IAAA,CAAA,EAwBE,gBAxBF,CAwBmB,GAxBnB,CAAA;AAGP,CAAA;AAAuC,KAwB3B,aAxB2B,CAAA,YAwBH,cAxBG,GAAA,KAAA,CAAA,GAwBuB,cAxBvB,CAyBrC,QAAA,CAAS,MAzB4B,EA0BrC,kBA1BqC,CA0BlB,GA1BkB,CAAA,CAAA;;;;;;;AAavC;;;;;;AAWA;;;cAoBM,OAlBe,EAAA,CAAA,YAkBM,cAlBN,CAAA,CAAA,aAAA,EAmBJ,GAnBI,EAAA,IAAA,CAAA,EAoBZ,gBApBY,CAoBK,GApBL,CAAA,EAAA,GAqBlB,aArBkB,CAqBJ,GArBI,CAAA"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { NodeType, StrictModeLocaleMap, TypedNodeModel } from "@intlayer/types";
|
|
2
2
|
|
|
3
3
|
//#region src/transpiler/translation/translation.d.ts
|
|
4
|
-
type TranslationContent<Content
|
|
4
|
+
type TranslationContent<Content = unknown, RecordContent extends StrictModeLocaleMap<Content> = StrictModeLocaleMap<Content>> = TypedNodeModel<NodeType.Translation, RecordContent>;
|
|
5
5
|
/**
|
|
6
6
|
*
|
|
7
7
|
* Function intended to be used to build intlayer dictionaries.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"translation.d.ts","names":[],"sources":["../../../../src/transpiler/translation/translation.ts"],"sourcesContent":[],"mappings":";;;KAOY,
|
|
1
|
+
{"version":3,"file":"translation.d.ts","names":[],"sources":["../../../../src/transpiler/translation/translation.ts"],"sourcesContent":[],"mappings":";;;KAOY,4DAGR,oBAAoB,WAAW,oBAAoB,YACnD,eAAe,QAAA,CAAS,aAAa;;AAJzC;;;;;;;;;AAIwD;;;;;;;;;;cAsBlD,WAKkB,EAAA,CAAA,UAAA,OAAA,EAAA,sBAFpB,mBAEoB,CAFA,OAEA,CAAA,GAFW,mBAEX,CAF+B,OAE/B,CAAA,CAAA,CAAA,OAAA,EAAb,aAAa,EAAA,GAAA,cAAA,CAAA,QAAA,CAAA,WAAA,EAAA,aAAA,EAAA;EAAA,QAAA,EAAA,aAAA,uBAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intlayer/core",
|
|
3
|
-
"version": "7.0.3
|
|
3
|
+
"version": "7.0.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Includes core Intlayer functions like translation, dictionary, and utility functions shared across multiple packages.",
|
|
6
6
|
"keywords": [
|
|
@@ -98,29 +98,29 @@
|
|
|
98
98
|
"typecheck": "tsc --noEmit --project tsconfig.types.json"
|
|
99
99
|
},
|
|
100
100
|
"dependencies": {
|
|
101
|
-
"@intlayer/api": "7.0.3
|
|
102
|
-
"@intlayer/config": "7.0.3
|
|
103
|
-
"@intlayer/dictionaries-entry": "7.0.3
|
|
104
|
-
"@intlayer/types": "7.0.3
|
|
105
|
-
"@intlayer/unmerged-dictionaries-entry": "7.0.3
|
|
101
|
+
"@intlayer/api": "7.0.3",
|
|
102
|
+
"@intlayer/config": "7.0.3",
|
|
103
|
+
"@intlayer/dictionaries-entry": "7.0.3",
|
|
104
|
+
"@intlayer/types": "7.0.3",
|
|
105
|
+
"@intlayer/unmerged-dictionaries-entry": "7.0.3",
|
|
106
106
|
"deepmerge": "4.3.1"
|
|
107
107
|
},
|
|
108
108
|
"devDependencies": {
|
|
109
|
-
"@types/node": "24.9.
|
|
110
|
-
"@utils/ts-config": "7.0.3
|
|
111
|
-
"@utils/ts-config-types": "7.0.3
|
|
112
|
-
"@utils/tsdown-config": "7.0.3
|
|
109
|
+
"@types/node": "24.9.2",
|
|
110
|
+
"@utils/ts-config": "7.0.3",
|
|
111
|
+
"@utils/ts-config-types": "7.0.3",
|
|
112
|
+
"@utils/tsdown-config": "7.0.3",
|
|
113
113
|
"rimraf": "6.0.1",
|
|
114
|
-
"tsdown": "0.15.
|
|
114
|
+
"tsdown": "0.15.11",
|
|
115
115
|
"typescript": "5.9.3",
|
|
116
|
-
"vitest": "4.0.
|
|
116
|
+
"vitest": "4.0.5"
|
|
117
117
|
},
|
|
118
118
|
"peerDependencies": {
|
|
119
|
-
"@intlayer/api": "7.0.3
|
|
120
|
-
"@intlayer/config": "7.0.3
|
|
121
|
-
"@intlayer/dictionaries-entry": "7.0.3
|
|
122
|
-
"@intlayer/types": "7.0.3
|
|
123
|
-
"@intlayer/unmerged-dictionaries-entry": "7.0.3
|
|
119
|
+
"@intlayer/api": "7.0.3",
|
|
120
|
+
"@intlayer/config": "7.0.3",
|
|
121
|
+
"@intlayer/dictionaries-entry": "7.0.3",
|
|
122
|
+
"@intlayer/types": "7.0.3",
|
|
123
|
+
"@intlayer/unmerged-dictionaries-entry": "7.0.3"
|
|
124
124
|
},
|
|
125
125
|
"engines": {
|
|
126
126
|
"node": ">=14.18"
|