@localess/cli 3.0.5-dev.20260428203008 → 3.0.5-dev.20260501212257
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/SKILL.md +11 -6
- package/dist/cache.d.ts +29 -0
- package/dist/client.d.ts +142 -0
- package/dist/commands/login/index.d.ts +2 -0
- package/dist/commands/login/login.test.d.ts +1 -0
- package/dist/commands/logout/index.d.ts +2 -0
- package/dist/commands/translations/index.d.ts +2 -0
- package/dist/commands/translations/pull/index.d.ts +7 -0
- package/dist/commands/translations/push/index.d.ts +9 -0
- package/dist/commands/types/generate/generator.d.ts +3 -0
- package/dist/commands/types/generate/generator.test.d.ts +1 -0
- package/dist/commands/types/generate/index.d.ts +2 -0
- package/dist/commands/types/index.d.ts +2 -0
- package/dist/commands/types/types.test.d.ts +1 -0
- package/dist/file.d.ts +7 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.mjs +153 -146
- package/dist/models/content-asset.d.ts +13 -0
- package/dist/models/content-data.d.ts +27 -0
- package/dist/models/content-link.d.ts +21 -0
- package/dist/models/content-metadata.d.ts +41 -0
- package/dist/models/content-reference.d.ts +13 -0
- package/dist/models/content-rich-text.d.ts +13 -0
- package/dist/models/content.d.ts +21 -0
- package/dist/models/index.d.ts +13 -0
- package/dist/models/links.d.ts +7 -0
- package/dist/models/locale.d.ts +10 -0
- package/dist/models/references.d.ts +7 -0
- package/dist/models/schema.d.ts +142 -0
- package/dist/models/space.d.ts +21 -0
- package/dist/models/translation.zod.d.ts +13 -0
- package/dist/models/translations.d.ts +25 -0
- package/dist/program.d.ts +2 -0
- package/dist/session.d.ts +22 -0
- package/dist/utils.d.ts +45 -0
- package/dist/utils.test.d.ts +1 -0
- package/package.json +2 -3
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ContentAsset } from './content-asset';
|
|
2
|
+
import { ContentLink } from './content-link';
|
|
3
|
+
import { ContentRichText } from './content-rich-text';
|
|
4
|
+
import { ContentReference } from './content-reference';
|
|
5
|
+
export type ContentDataField = any | string | string[] | number | boolean | ContentLink | ContentRichText | ContentData | ContentData[] | ContentAsset | ContentAsset[] | ContentReference | ContentReference[];
|
|
6
|
+
/**
|
|
7
|
+
* Content Data Schema related information.
|
|
8
|
+
*/
|
|
9
|
+
export interface ContentDataSchema {
|
|
10
|
+
/**
|
|
11
|
+
* Unique identifier of a component in a content.
|
|
12
|
+
*/
|
|
13
|
+
_id: string;
|
|
14
|
+
/**
|
|
15
|
+
* Unique identifier for the Schema object.
|
|
16
|
+
*/
|
|
17
|
+
_schema: string;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* ContentData defined Object to connect all possible root Schemas.
|
|
21
|
+
*/
|
|
22
|
+
export interface ContentData extends ContentDataSchema {
|
|
23
|
+
/**
|
|
24
|
+
* Other Schema-specific fields
|
|
25
|
+
*/
|
|
26
|
+
[field: string]: ContentDataField | undefined;
|
|
27
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Content Link define reference to a Link.
|
|
3
|
+
*/
|
|
4
|
+
export interface ContentLink {
|
|
5
|
+
/**
|
|
6
|
+
* Define the type of Link
|
|
7
|
+
*/
|
|
8
|
+
kind: 'LINK';
|
|
9
|
+
/**
|
|
10
|
+
* Define the target of the link. _blank for the new tab and _self for the same tab.
|
|
11
|
+
*/
|
|
12
|
+
target: '_blank' | '_self';
|
|
13
|
+
/**
|
|
14
|
+
* Define the type of Link. URL for external links and Content for internal links.
|
|
15
|
+
*/
|
|
16
|
+
type: 'url' | 'content';
|
|
17
|
+
/**
|
|
18
|
+
* If the type is content, then it will be Content ID. Otherwise, it will be URL.
|
|
19
|
+
*/
|
|
20
|
+
uri: string;
|
|
21
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Content Metadata defines short information about a Content for navigation reason.
|
|
3
|
+
*/
|
|
4
|
+
export interface ContentMetadata {
|
|
5
|
+
/**
|
|
6
|
+
* Date and Time at which the Content was created.
|
|
7
|
+
*/
|
|
8
|
+
createdAt: string;
|
|
9
|
+
/**
|
|
10
|
+
* Combination of SLUG and Parent SLUG of the Content
|
|
11
|
+
*/
|
|
12
|
+
fullSlug: string;
|
|
13
|
+
/**
|
|
14
|
+
* Unique identifier for the object.
|
|
15
|
+
*/
|
|
16
|
+
id: string;
|
|
17
|
+
/**
|
|
18
|
+
* Define the type of Content, whether it is a FOLDER or DOCUMENT.
|
|
19
|
+
*/
|
|
20
|
+
kind: 'FOLDER' | 'DOCUMENT';
|
|
21
|
+
/**
|
|
22
|
+
* Name of the Content
|
|
23
|
+
*/
|
|
24
|
+
name: string;
|
|
25
|
+
/**
|
|
26
|
+
* Parent SLUG of the Content
|
|
27
|
+
*/
|
|
28
|
+
parentSlug: string;
|
|
29
|
+
/**
|
|
30
|
+
* Date and Time at which the Content was published.
|
|
31
|
+
*/
|
|
32
|
+
publishedAt?: string;
|
|
33
|
+
/**
|
|
34
|
+
* SLUG of the Content
|
|
35
|
+
*/
|
|
36
|
+
slug: string;
|
|
37
|
+
/**
|
|
38
|
+
* Date and Time at which the Content was updated.
|
|
39
|
+
*/
|
|
40
|
+
updatedAt: string;
|
|
41
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ContentData } from './content-data';
|
|
2
|
+
import { ContentMetadata } from './content-metadata';
|
|
3
|
+
import { Links } from './links';
|
|
4
|
+
import { References } from './references';
|
|
5
|
+
/**
|
|
6
|
+
* Content defines a shared object for all possible Content Types.
|
|
7
|
+
*/
|
|
8
|
+
export interface Content<T extends ContentData = ContentData> extends ContentMetadata {
|
|
9
|
+
/**
|
|
10
|
+
* Content Data
|
|
11
|
+
*/
|
|
12
|
+
data?: T;
|
|
13
|
+
/**
|
|
14
|
+
* All links used in the content.
|
|
15
|
+
*/
|
|
16
|
+
links?: Links;
|
|
17
|
+
/**
|
|
18
|
+
* All references used in the content.
|
|
19
|
+
*/
|
|
20
|
+
references?: References;
|
|
21
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export * from './content';
|
|
2
|
+
export * from './content-asset';
|
|
3
|
+
export * from './content-data';
|
|
4
|
+
export * from './content-link';
|
|
5
|
+
export * from './content-metadata';
|
|
6
|
+
export * from './content-reference';
|
|
7
|
+
export * from './content-rich-text';
|
|
8
|
+
export * from './links';
|
|
9
|
+
export * from './locale';
|
|
10
|
+
export * from './references';
|
|
11
|
+
export * from './schema';
|
|
12
|
+
export * from './space';
|
|
13
|
+
export * from './translations';
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
export type Schemas = Record<string, Schema>;
|
|
2
|
+
export declare enum SchemaType {
|
|
3
|
+
ROOT = "ROOT",
|
|
4
|
+
NODE = "NODE",
|
|
5
|
+
ENUM = "ENUM"
|
|
6
|
+
}
|
|
7
|
+
export type Schema = SchemaComponent | SchemaEnum;
|
|
8
|
+
export interface SchemaBase {
|
|
9
|
+
type: SchemaType;
|
|
10
|
+
displayName?: string;
|
|
11
|
+
description?: string;
|
|
12
|
+
labels?: string[];
|
|
13
|
+
createdAt: number;
|
|
14
|
+
updatedAt: number;
|
|
15
|
+
}
|
|
16
|
+
export interface SchemaComponent extends SchemaBase {
|
|
17
|
+
type: SchemaType.ROOT | SchemaType.NODE;
|
|
18
|
+
previewField?: string;
|
|
19
|
+
fields?: SchemaField[];
|
|
20
|
+
}
|
|
21
|
+
export interface SchemaEnum extends SchemaBase {
|
|
22
|
+
type: SchemaType.ENUM;
|
|
23
|
+
values?: SchemaEnumValue[];
|
|
24
|
+
}
|
|
25
|
+
export interface SchemaEnumValue {
|
|
26
|
+
name: string;
|
|
27
|
+
value: string;
|
|
28
|
+
}
|
|
29
|
+
export type SchemaField = SchemaFieldText | SchemaFieldTextarea | SchemaFieldRichText | SchemaFieldMarkdown | SchemaFieldNumber | SchemaFieldColor | SchemaFieldDate | SchemaFieldDateTime | SchemaFieldBoolean | SchemaFieldSchema | SchemaFieldSchemas | SchemaFieldOption | SchemaFieldOptions | SchemaFieldLink | SchemaFieldReference | SchemaFieldReferences | SchemaFieldAsset | SchemaFieldAssets;
|
|
30
|
+
export declare enum SchemaFieldKind {
|
|
31
|
+
TEXT = "TEXT",
|
|
32
|
+
TEXTAREA = "TEXTAREA",
|
|
33
|
+
RICH_TEXT = "RICH_TEXT",
|
|
34
|
+
MARKDOWN = "MARKDOWN",
|
|
35
|
+
NUMBER = "NUMBER",
|
|
36
|
+
COLOR = "COLOR",
|
|
37
|
+
DATE = "DATE",
|
|
38
|
+
DATETIME = "DATETIME",
|
|
39
|
+
BOOLEAN = "BOOLEAN",
|
|
40
|
+
OPTION = "OPTION",
|
|
41
|
+
OPTIONS = "OPTIONS",
|
|
42
|
+
LINK = "LINK",
|
|
43
|
+
REFERENCE = "REFERENCE",
|
|
44
|
+
REFERENCES = "REFERENCES",
|
|
45
|
+
ASSET = "ASSET",
|
|
46
|
+
ASSETS = "ASSETS",
|
|
47
|
+
SCHEMA = "SCHEMA",
|
|
48
|
+
SCHEMAS = "SCHEMAS"
|
|
49
|
+
}
|
|
50
|
+
export interface SchemaFieldBase {
|
|
51
|
+
name: string;
|
|
52
|
+
kind: SchemaFieldKind;
|
|
53
|
+
displayName?: string;
|
|
54
|
+
required?: boolean;
|
|
55
|
+
description?: string;
|
|
56
|
+
defaultValue?: string;
|
|
57
|
+
translatable?: boolean;
|
|
58
|
+
}
|
|
59
|
+
export interface SchemaFieldText extends SchemaFieldBase {
|
|
60
|
+
kind: SchemaFieldKind.TEXT;
|
|
61
|
+
minLength?: number;
|
|
62
|
+
maxLength?: number;
|
|
63
|
+
}
|
|
64
|
+
export interface SchemaFieldTextarea extends SchemaFieldBase {
|
|
65
|
+
kind: SchemaFieldKind.TEXTAREA;
|
|
66
|
+
minLength?: number;
|
|
67
|
+
maxLength?: number;
|
|
68
|
+
}
|
|
69
|
+
export interface SchemaFieldRichText extends SchemaFieldBase {
|
|
70
|
+
kind: SchemaFieldKind.RICH_TEXT;
|
|
71
|
+
minLength?: number;
|
|
72
|
+
maxLength?: number;
|
|
73
|
+
}
|
|
74
|
+
export interface SchemaFieldMarkdown extends SchemaFieldBase {
|
|
75
|
+
kind: SchemaFieldKind.MARKDOWN;
|
|
76
|
+
minLength?: number;
|
|
77
|
+
maxLength?: number;
|
|
78
|
+
}
|
|
79
|
+
export interface SchemaFieldNumber extends SchemaFieldBase {
|
|
80
|
+
kind: SchemaFieldKind.NUMBER;
|
|
81
|
+
minValue?: number;
|
|
82
|
+
maxValue?: number;
|
|
83
|
+
}
|
|
84
|
+
export interface SchemaFieldColor extends SchemaFieldBase {
|
|
85
|
+
kind: SchemaFieldKind.COLOR;
|
|
86
|
+
}
|
|
87
|
+
export interface SchemaFieldDate extends SchemaFieldBase {
|
|
88
|
+
kind: SchemaFieldKind.DATE;
|
|
89
|
+
}
|
|
90
|
+
export interface SchemaFieldDateTime extends SchemaFieldBase {
|
|
91
|
+
kind: SchemaFieldKind.DATETIME;
|
|
92
|
+
}
|
|
93
|
+
export interface SchemaFieldBoolean extends SchemaFieldBase {
|
|
94
|
+
kind: SchemaFieldKind.BOOLEAN;
|
|
95
|
+
}
|
|
96
|
+
export interface SchemaFieldSchemas extends SchemaFieldBase {
|
|
97
|
+
kind: SchemaFieldKind.SCHEMAS;
|
|
98
|
+
schemas?: string[];
|
|
99
|
+
}
|
|
100
|
+
export interface SchemaFieldSchema extends SchemaFieldBase {
|
|
101
|
+
kind: SchemaFieldKind.SCHEMA;
|
|
102
|
+
schemas?: string[];
|
|
103
|
+
}
|
|
104
|
+
export interface SchemaFieldOption extends SchemaFieldBase {
|
|
105
|
+
kind: SchemaFieldKind.OPTION;
|
|
106
|
+
source: string;
|
|
107
|
+
}
|
|
108
|
+
export interface SchemaFieldOptions extends SchemaFieldBase {
|
|
109
|
+
kind: SchemaFieldKind.OPTIONS;
|
|
110
|
+
source: string;
|
|
111
|
+
minValues?: number;
|
|
112
|
+
maxValues?: number;
|
|
113
|
+
}
|
|
114
|
+
export interface SchemaFieldLink extends SchemaFieldBase {
|
|
115
|
+
kind: SchemaFieldKind.LINK;
|
|
116
|
+
}
|
|
117
|
+
export interface SchemaFieldReference extends SchemaFieldBase {
|
|
118
|
+
kind: SchemaFieldKind.REFERENCE;
|
|
119
|
+
path?: string;
|
|
120
|
+
}
|
|
121
|
+
export interface SchemaFieldReferences extends SchemaFieldBase {
|
|
122
|
+
kind: SchemaFieldKind.REFERENCES;
|
|
123
|
+
path?: string;
|
|
124
|
+
}
|
|
125
|
+
export interface SchemaFieldAsset extends SchemaFieldBase {
|
|
126
|
+
kind: SchemaFieldKind.ASSET;
|
|
127
|
+
fileTypes?: AssetFileType[];
|
|
128
|
+
fileType?: AssetFileType;
|
|
129
|
+
}
|
|
130
|
+
export interface SchemaFieldAssets extends SchemaFieldBase {
|
|
131
|
+
kind: SchemaFieldKind.ASSETS;
|
|
132
|
+
fileTypes?: AssetFileType[];
|
|
133
|
+
fileType?: AssetFileType;
|
|
134
|
+
}
|
|
135
|
+
export declare enum AssetFileType {
|
|
136
|
+
ANY = "ANY",
|
|
137
|
+
IMAGE = "IMAGE",
|
|
138
|
+
VIDEO = "VIDEO",
|
|
139
|
+
TEXT = "TEXT",
|
|
140
|
+
AUDIO = "AUDIO",
|
|
141
|
+
APPLICATION = "APPLICATION"
|
|
142
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Locale } from './locale';
|
|
2
|
+
export interface Space {
|
|
3
|
+
/**
|
|
4
|
+
* Unique identifier for the object.
|
|
5
|
+
*/
|
|
6
|
+
id: string;
|
|
7
|
+
/**
|
|
8
|
+
* Name of the Content
|
|
9
|
+
*/
|
|
10
|
+
name: string;
|
|
11
|
+
locales: Locale[];
|
|
12
|
+
localeFallback: Locale;
|
|
13
|
+
/**
|
|
14
|
+
* Date and Time at which the Content was created.
|
|
15
|
+
*/
|
|
16
|
+
createdAt: string;
|
|
17
|
+
/**
|
|
18
|
+
* Date and Time at which the Content was updated.
|
|
19
|
+
*/
|
|
20
|
+
updatedAt: string;
|
|
21
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const zLocaleTranslationsSchema: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
3
|
+
export declare const zTranslationUpdateTypeSchema: z.ZodEnum<{
|
|
4
|
+
"add-missing": "add-missing";
|
|
5
|
+
"update-existing": "update-existing";
|
|
6
|
+
}>;
|
|
7
|
+
export declare const zTranslationUpdateSchema: z.ZodObject<{
|
|
8
|
+
type: z.ZodEnum<{
|
|
9
|
+
"add-missing": "add-missing";
|
|
10
|
+
"update-existing": "update-existing";
|
|
11
|
+
}>;
|
|
12
|
+
values: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
13
|
+
}, z.core.$strip>;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Key-Value Object. Where Key is Translation ID and Value is Translated Content
|
|
3
|
+
*/
|
|
4
|
+
export interface Translations {
|
|
5
|
+
[key: string]: string;
|
|
6
|
+
}
|
|
7
|
+
export type TranslationUpdate = {
|
|
8
|
+
dryRun?: boolean;
|
|
9
|
+
type: TranslationUpdateType;
|
|
10
|
+
values: Translations;
|
|
11
|
+
};
|
|
12
|
+
export declare enum TranslationUpdateType {
|
|
13
|
+
ADD_MISSING = "add-missing",
|
|
14
|
+
UPDATE_EXISTING = "update-existing",
|
|
15
|
+
DELETE_MISSING = "delete-missing"
|
|
16
|
+
}
|
|
17
|
+
export declare enum TranslationFileFormat {
|
|
18
|
+
FLAT = "flat",
|
|
19
|
+
NESTED = "nested"
|
|
20
|
+
}
|
|
21
|
+
export type TranslationUpdateResponse = {
|
|
22
|
+
message: string;
|
|
23
|
+
ids?: string[];
|
|
24
|
+
dryRun?: boolean;
|
|
25
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export type SessionData = {
|
|
2
|
+
token: string;
|
|
3
|
+
space: string;
|
|
4
|
+
origin: string;
|
|
5
|
+
};
|
|
6
|
+
export type SessionOptions = {
|
|
7
|
+
token: string;
|
|
8
|
+
space: string;
|
|
9
|
+
origin: string;
|
|
10
|
+
};
|
|
11
|
+
export type Session = {
|
|
12
|
+
token: string;
|
|
13
|
+
space: string;
|
|
14
|
+
origin: string;
|
|
15
|
+
isLoggedIn: true;
|
|
16
|
+
method?: 'env' | 'file';
|
|
17
|
+
} | {
|
|
18
|
+
isLoggedIn: false;
|
|
19
|
+
};
|
|
20
|
+
export declare function getSession(): Promise<Session>;
|
|
21
|
+
export declare function persistSession(data: SessionOptions): Promise<void>;
|
|
22
|
+
export declare function clearSession(): Promise<void>;
|
package/dist/utils.d.ts
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
export declare const RESET = "\u001B[0m";
|
|
2
|
+
export declare const BRIGHT = "\u001B[1m";
|
|
3
|
+
export declare const DIM = "\u001B[2m";
|
|
4
|
+
export declare const UNDERSCORE = "\u001B[4m";
|
|
5
|
+
export declare const BLINK = "\u001B[5m";
|
|
6
|
+
export declare const REVERSE = "\u001B[7m";
|
|
7
|
+
export declare const HIDDEN = "\u001B[8m";
|
|
8
|
+
export declare const FG_BLACK = "\u001B[30m";
|
|
9
|
+
export declare const FG_RED = "\u001B[31m";
|
|
10
|
+
export declare const FG_GREEN = "\u001B[32m";
|
|
11
|
+
export declare const FG_YELLOW = "\u001B[33m";
|
|
12
|
+
export declare const FG_BLUE = "\u001B[34m";
|
|
13
|
+
export declare const FG_MAGENTA = "\u001B[35m";
|
|
14
|
+
export declare const FG_CYAN = "\u001B[36m";
|
|
15
|
+
export declare const FG_WHITE = "\u001B[37m";
|
|
16
|
+
export declare const FG_GRAY = "\u001B[90m";
|
|
17
|
+
export declare const FG_BRIGHT_RED = "\u001B[91m";
|
|
18
|
+
export declare const FG_BRIGHT_GREEN = "\u001B[92m";
|
|
19
|
+
export declare const FG_BRIGHT_YELLOW = "\u001B[93m";
|
|
20
|
+
export declare const FG_BRIGHT_BLUE = "\u001B[94m";
|
|
21
|
+
export declare const FG_BRIGHT_MAGENTA = "\u001B[95m";
|
|
22
|
+
export declare const FG_BRIGHT_CYAN = "\u001B[96m";
|
|
23
|
+
export declare const FG_BRIGHT_WHITE = "\u001B[97m";
|
|
24
|
+
export declare const BG_BLACK = "\u001B[40m";
|
|
25
|
+
export declare const BG_RED = "\u001B[41m";
|
|
26
|
+
export declare const BG_GREEN = "\u001B[42m";
|
|
27
|
+
export declare const BG_YELLOW = "\u001B[43m";
|
|
28
|
+
export declare const BG_BLUE = "\u001B[44m";
|
|
29
|
+
export declare const BG_MAGENTA = "\u001B[45m";
|
|
30
|
+
export declare const BG_CYAN = "\u001B[46m";
|
|
31
|
+
export declare const BG_WHITE = "\u001B[47m";
|
|
32
|
+
export declare const BG_GRAY = "\u001B[100m";
|
|
33
|
+
export declare const BG_BRIGHT_RED = "\u001B[101m";
|
|
34
|
+
export declare const BG_BRIGHT_GREEN = "\u001B[102m";
|
|
35
|
+
export declare const BG_BRIGHT_YELLOW = "\u001B[103m";
|
|
36
|
+
export declare const BG_BRIGHT_BLUE = "\u001B[104m";
|
|
37
|
+
export declare const BG_BRIGHT_MAGENTA = "\u001B[105m";
|
|
38
|
+
export declare const BG_BRIGHT_CYAN = "\u001B[106m";
|
|
39
|
+
export declare const BG_BRIGHT_WHITE = "\u001B[107m";
|
|
40
|
+
export declare const isBrowser: () => boolean;
|
|
41
|
+
export declare const isServer: () => boolean;
|
|
42
|
+
export declare const isIframe: () => boolean;
|
|
43
|
+
export declare function sortObjectKeys<T extends Record<string, unknown>>(input: T): T;
|
|
44
|
+
export declare function nestedObjectToFlat(input: Record<string, unknown>, prefix?: string): Record<string, string>;
|
|
45
|
+
export declare function dotToNestedObject(input: Record<string, string>): Record<string, unknown>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@localess/cli",
|
|
3
|
-
"version": "3.0.5-dev.
|
|
3
|
+
"version": "3.0.5-dev.20260501212257",
|
|
4
4
|
"description": "Localess Command Line.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"localess",
|
|
@@ -45,7 +45,6 @@
|
|
|
45
45
|
"@inquirer/prompts": "^8.4.2",
|
|
46
46
|
"chalk": "^5.6.2",
|
|
47
47
|
"commander": "^14.0.3",
|
|
48
|
-
"orval": "^8.8.1",
|
|
49
48
|
"zod": "^4.3.6"
|
|
50
49
|
},
|
|
51
50
|
"devDependencies": {
|
|
@@ -53,7 +52,7 @@
|
|
|
53
52
|
"openapi3-ts": "^4.5.0",
|
|
54
53
|
"typescript": "^5.0.0",
|
|
55
54
|
"vite": "^8.0.10",
|
|
56
|
-
"vite-plugin-dts": "^
|
|
55
|
+
"vite-plugin-dts": "^5.0.0"
|
|
57
56
|
},
|
|
58
57
|
"engines": {
|
|
59
58
|
"node": ">= 20.0.0"
|