@librechat/data-schemas 0.0.23 → 0.0.30
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/index.cjs +2180 -1564
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +2174 -1567
- package/dist/index.es.js.map +1 -1
- package/dist/types/app/agents.d.ts +10 -0
- package/dist/types/app/assistants.d.ts +19 -0
- package/dist/types/app/azure.d.ts +7 -0
- package/dist/types/app/endpoints.d.ts +16 -0
- package/dist/types/app/index.d.ts +6 -0
- package/dist/types/app/interface.d.ts +13 -0
- package/dist/types/app/memory.d.ts +3 -0
- package/dist/types/app/ocr.d.ts +2 -0
- package/dist/types/app/service.d.ts +23 -0
- package/dist/types/app/specs.d.ts +9 -0
- package/dist/types/app/turnstile.d.ts +17 -0
- package/dist/types/app/web.d.ts +41 -0
- package/dist/types/app/web.spec.d.ts +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/methods/share.d.ts +2 -1
- package/dist/types/schema/share.d.ts +1 -0
- package/dist/types/types/agent.d.ts +3 -0
- package/dist/types/types/app.d.ts +98 -0
- package/dist/types/types/index.d.ts +2 -0
- package/dist/types/types/message.d.ts +1 -0
- package/dist/types/types/role.d.ts +1 -4
- package/dist/types/types/share.d.ts +1 -0
- package/dist/types/types/web.d.ts +3 -0
- package/package.json +4 -4
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { TCustomConfig, TAgentsEndpoint } from 'librechat-data-provider';
|
|
2
|
+
/**
|
|
3
|
+
* Sets up the Agents configuration from the config (`librechat.yaml`) file.
|
|
4
|
+
* If no agents config is defined, uses the provided defaults or parses empty object.
|
|
5
|
+
*
|
|
6
|
+
* @param config - The loaded custom configuration.
|
|
7
|
+
* @param [defaultConfig] - Default configuration from getConfigDefaults.
|
|
8
|
+
* @returns The Agents endpoint configuration.
|
|
9
|
+
*/
|
|
10
|
+
export declare function agentsConfigSetup(config: Partial<TCustomConfig>, defaultConfig?: Partial<TAgentsEndpoint>): Partial<TAgentsEndpoint>;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EModelEndpoint } from 'librechat-data-provider';
|
|
2
|
+
import type { TCustomConfig, TAssistantEndpoint } from 'librechat-data-provider';
|
|
3
|
+
/**
|
|
4
|
+
* Sets up the minimum, default Assistants configuration if Azure OpenAI Assistants option is enabled.
|
|
5
|
+
* @returns The Assistants endpoint configuration.
|
|
6
|
+
*/
|
|
7
|
+
export declare function azureAssistantsDefaults(): {
|
|
8
|
+
capabilities: TAssistantEndpoint['capabilities'];
|
|
9
|
+
version: TAssistantEndpoint['version'];
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* Sets up the Assistants configuration from the config (`librechat.yaml`) file.
|
|
13
|
+
* @param config - The loaded custom configuration.
|
|
14
|
+
* @param assistantsEndpoint - The Assistants endpoint name.
|
|
15
|
+
* - The previously loaded assistants configuration from Azure OpenAI Assistants option.
|
|
16
|
+
* @param [prevConfig]
|
|
17
|
+
* @returns The Assistants endpoint configuration.
|
|
18
|
+
*/
|
|
19
|
+
export declare function assistantsConfigSetup(config: Partial<TCustomConfig>, assistantsEndpoint: EModelEndpoint.assistants | EModelEndpoint.azureAssistants, prevConfig?: Partial<TAssistantEndpoint>): Partial<TAssistantEndpoint>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { TCustomConfig, TAzureConfig } from 'librechat-data-provider';
|
|
2
|
+
/**
|
|
3
|
+
* Sets up the Azure OpenAI configuration from the config (`librechat.yaml`) file.
|
|
4
|
+
* @param config - The loaded custom configuration.
|
|
5
|
+
* @returns The Azure OpenAI configuration.
|
|
6
|
+
*/
|
|
7
|
+
export declare function azureConfigSetup(config: Partial<TCustomConfig>): TAzureConfig;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Loads custom config endpoints
|
|
3
|
+
* @param [config]
|
|
4
|
+
* @param [agentsDefaults]
|
|
5
|
+
*/
|
|
6
|
+
export declare const loadEndpoints: (config: TCustomConfig, agentsDefaults?: any) => {
|
|
7
|
+
openAI?: any;
|
|
8
|
+
google?: any;
|
|
9
|
+
bedrock?: any;
|
|
10
|
+
anthropic?: any;
|
|
11
|
+
gptPlugins?: any;
|
|
12
|
+
azureOpenAI?: any;
|
|
13
|
+
assistants?: any;
|
|
14
|
+
azureAssistants?: any;
|
|
15
|
+
all?: any;
|
|
16
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { TCustomConfig, TConfigDefaults } from 'librechat-data-provider';
|
|
2
|
+
import type { AppConfig } from '~/types/app';
|
|
3
|
+
/**
|
|
4
|
+
* Loads the default interface object.
|
|
5
|
+
* @param params - The loaded custom configuration.
|
|
6
|
+
* @param params.config - The loaded custom configuration.
|
|
7
|
+
* @param params.configDefaults - The custom configuration default values.
|
|
8
|
+
* @returns default interface object.
|
|
9
|
+
*/
|
|
10
|
+
export declare function loadDefaultInterface({ config, configDefaults, }: {
|
|
11
|
+
config?: Partial<TCustomConfig>;
|
|
12
|
+
configDefaults: TConfigDefaults;
|
|
13
|
+
}): Promise<AppConfig['interfaceConfig']>;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { TCustomConfig, DeepPartial } from 'librechat-data-provider';
|
|
2
|
+
import type { AppConfig, FunctionTool } from '~/types/app';
|
|
3
|
+
export type Paths = {
|
|
4
|
+
root: string;
|
|
5
|
+
uploads: string;
|
|
6
|
+
clientPath: string;
|
|
7
|
+
dist: string;
|
|
8
|
+
publicPath: string;
|
|
9
|
+
fonts: string;
|
|
10
|
+
assets: string;
|
|
11
|
+
imageOutput: string;
|
|
12
|
+
structuredTools: string;
|
|
13
|
+
pluginManifest: string;
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* Loads custom config and initializes app-wide variables.
|
|
17
|
+
* @function AppService
|
|
18
|
+
*/
|
|
19
|
+
export declare const AppService: (params?: {
|
|
20
|
+
config: DeepPartial<TCustomConfig>;
|
|
21
|
+
paths?: Paths;
|
|
22
|
+
systemTools?: Record<string, FunctionTool>;
|
|
23
|
+
}) => Promise<AppConfig>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { TCustomConfig } from 'librechat-data-provider';
|
|
2
|
+
/**
|
|
3
|
+
* Sets up Model Specs from the config (`librechat.yaml`) file.
|
|
4
|
+
* @param [endpoints] - The loaded custom configuration for endpoints.
|
|
5
|
+
* @param [modelSpecs] - The loaded custom configuration for model specs.
|
|
6
|
+
* @param [interfaceConfig] - The loaded interface configuration.
|
|
7
|
+
* @returns The processed model specs, if any.
|
|
8
|
+
*/
|
|
9
|
+
export declare function processModelSpecs(endpoints?: TCustomConfig['endpoints'], _modelSpecs?: TCustomConfig['modelSpecs'], interfaceConfig?: TCustomConfig['interface']): TCustomConfig['modelSpecs'] | undefined;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { TCustomConfig, TConfigDefaults } from 'librechat-data-provider';
|
|
2
|
+
/**
|
|
3
|
+
* Loads and maps the Cloudflare Turnstile configuration.
|
|
4
|
+
*
|
|
5
|
+
* Expected config structure:
|
|
6
|
+
*
|
|
7
|
+
* turnstile:
|
|
8
|
+
* siteKey: "your-site-key-here"
|
|
9
|
+
* options:
|
|
10
|
+
* language: "auto" // "auto" or an ISO 639-1 language code (e.g. en)
|
|
11
|
+
* size: "normal" // Options: "normal", "compact", "flexible", or "invisible"
|
|
12
|
+
*
|
|
13
|
+
* @param config - The loaded custom configuration.
|
|
14
|
+
* @param configDefaults - The custom configuration default values.
|
|
15
|
+
* @returns The mapped Turnstile configuration.
|
|
16
|
+
*/
|
|
17
|
+
export declare function loadTurnstileConfig(config: Partial<TCustomConfig> | undefined, configDefaults: TConfigDefaults): Partial<TCustomConfig['turnstile']>;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import type { TCustomConfig } from 'librechat-data-provider';
|
|
2
|
+
import type { TWebSearchKeys } from '~/types/web';
|
|
3
|
+
export declare const webSearchAuth: {
|
|
4
|
+
providers: {
|
|
5
|
+
serper: {
|
|
6
|
+
serperApiKey: 1;
|
|
7
|
+
};
|
|
8
|
+
searxng: {
|
|
9
|
+
searxngInstanceUrl: 1;
|
|
10
|
+
/** Optional (0) */
|
|
11
|
+
searxngApiKey: 0;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
scrapers: {
|
|
15
|
+
firecrawl: {
|
|
16
|
+
firecrawlApiKey: 1;
|
|
17
|
+
/** Optional (0) */
|
|
18
|
+
firecrawlApiUrl: 0;
|
|
19
|
+
firecrawlVersion: 0;
|
|
20
|
+
};
|
|
21
|
+
serper: {
|
|
22
|
+
serperApiKey: 1;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
rerankers: {
|
|
26
|
+
jina: {
|
|
27
|
+
jinaApiKey: 1;
|
|
28
|
+
/** Optional (0) */
|
|
29
|
+
jinaApiUrl: 0;
|
|
30
|
+
};
|
|
31
|
+
cohere: {
|
|
32
|
+
cohereApiKey: 1;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* Extracts all unique API keys from the webSearchAuth configuration object
|
|
38
|
+
*/
|
|
39
|
+
export declare function getWebSearchKeys(): TWebSearchKeys[];
|
|
40
|
+
export declare const webSearchKeys: TWebSearchKeys[];
|
|
41
|
+
export declare function loadWebSearchConfig(config: TCustomConfig['webSearch']): TCustomConfig['webSearch'];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/types/index.d.ts
CHANGED
|
@@ -29,10 +29,11 @@ import type * as t from '~/types';
|
|
|
29
29
|
export declare function createShareMethods(mongoose: typeof import('mongoose')): {
|
|
30
30
|
getSharedLink: (user: string, conversationId: string) => Promise<t.GetShareLinkResult>;
|
|
31
31
|
getSharedLinks: (user: string, pageParam?: Date, pageSize?: number, isPublic?: boolean, sortBy?: string, sortDirection?: string, search?: string) => Promise<t.SharedLinksResult>;
|
|
32
|
-
createSharedLink: (user: string, conversationId: string) => Promise<t.CreateShareResult>;
|
|
32
|
+
createSharedLink: (user: string, conversationId: string, targetMessageId?: string) => Promise<t.CreateShareResult>;
|
|
33
33
|
updateSharedLink: (user: string, shareId: string) => Promise<t.UpdateShareResult>;
|
|
34
34
|
deleteSharedLink: (user: string, shareId: string) => Promise<t.DeleteShareResult | null>;
|
|
35
35
|
getSharedMessages: (shareId: string) => Promise<t.SharedMessagesResult | null>;
|
|
36
36
|
deleteAllSharedLinks: (user: string) => Promise<t.DeleteAllSharesResult>;
|
|
37
|
+
deleteConvoSharedLink: (user: string, conversationId: string) => Promise<t.DeleteAllSharesResult>;
|
|
37
38
|
};
|
|
38
39
|
export type ShareMethods = ReturnType<typeof createShareMethods>;
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
25
|
/// <reference types="mongoose/types/inferrawdoctype" />
|
|
26
26
|
import { Document, Types } from 'mongoose';
|
|
27
|
+
import type { GraphEdge } from 'librechat-data-provider';
|
|
27
28
|
export interface ISupportContact {
|
|
28
29
|
name?: string;
|
|
29
30
|
email?: string;
|
|
@@ -50,7 +51,9 @@ export interface IAgent extends Omit<Document, 'model'> {
|
|
|
50
51
|
authorName?: string;
|
|
51
52
|
hide_sequential_outputs?: boolean;
|
|
52
53
|
end_after_tools?: boolean;
|
|
54
|
+
/** @deprecated Use edges instead */
|
|
53
55
|
agent_ids?: string[];
|
|
56
|
+
edges?: GraphEdge[];
|
|
54
57
|
/** @deprecated Use ACL permissions instead */
|
|
55
58
|
isCollaborative?: boolean;
|
|
56
59
|
conversation_starters?: string[];
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import type { TEndpoint, FileSources, TFileConfig, TAzureConfig, TCustomConfig, TMemoryConfig, TAssistantEndpoint } from 'librechat-data-provider';
|
|
2
|
+
export type JsonSchemaType = {
|
|
3
|
+
type: 'string' | 'number' | 'integer' | 'float' | 'boolean' | 'array' | 'object';
|
|
4
|
+
enum?: string[];
|
|
5
|
+
items?: JsonSchemaType;
|
|
6
|
+
properties?: Record<string, JsonSchemaType>;
|
|
7
|
+
required?: string[];
|
|
8
|
+
description?: string;
|
|
9
|
+
additionalProperties?: boolean | JsonSchemaType;
|
|
10
|
+
};
|
|
11
|
+
export type ConvertJsonSchemaToZodOptions = {
|
|
12
|
+
allowEmptyObject?: boolean;
|
|
13
|
+
dropFields?: string[];
|
|
14
|
+
transformOneOfAnyOf?: boolean;
|
|
15
|
+
};
|
|
16
|
+
export interface FunctionTool {
|
|
17
|
+
type: 'function';
|
|
18
|
+
function: {
|
|
19
|
+
description: string;
|
|
20
|
+
name: string;
|
|
21
|
+
parameters: JsonSchemaType;
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Application configuration object
|
|
26
|
+
* Based on the configuration defined in api/server/services/Config/getAppConfig.js
|
|
27
|
+
*/
|
|
28
|
+
export interface AppConfig {
|
|
29
|
+
/** The main custom configuration */
|
|
30
|
+
config: Partial<TCustomConfig>;
|
|
31
|
+
/** OCR configuration */
|
|
32
|
+
ocr?: TCustomConfig['ocr'];
|
|
33
|
+
/** File paths configuration */
|
|
34
|
+
paths?: {
|
|
35
|
+
uploads: string;
|
|
36
|
+
imageOutput: string;
|
|
37
|
+
publicPath: string;
|
|
38
|
+
[key: string]: string;
|
|
39
|
+
};
|
|
40
|
+
/** Memory configuration */
|
|
41
|
+
memory?: TMemoryConfig;
|
|
42
|
+
/** Web search configuration */
|
|
43
|
+
webSearch?: TCustomConfig['webSearch'];
|
|
44
|
+
/** File storage strategy ('local', 's3', 'firebase', 'azure_blob') */
|
|
45
|
+
fileStrategy: FileSources.local | FileSources.s3 | FileSources.firebase | FileSources.azure_blob;
|
|
46
|
+
/** File strategies configuration */
|
|
47
|
+
fileStrategies?: TCustomConfig['fileStrategies'];
|
|
48
|
+
/** Registration configurations */
|
|
49
|
+
registration?: TCustomConfig['registration'];
|
|
50
|
+
/** Actions configurations */
|
|
51
|
+
actions?: TCustomConfig['actions'];
|
|
52
|
+
/** Admin-filtered tools */
|
|
53
|
+
filteredTools?: string[];
|
|
54
|
+
/** Admin-included tools */
|
|
55
|
+
includedTools?: string[];
|
|
56
|
+
/** Image output type configuration */
|
|
57
|
+
imageOutputType: string;
|
|
58
|
+
/** Interface configuration */
|
|
59
|
+
interfaceConfig?: TCustomConfig['interface'];
|
|
60
|
+
/** Turnstile configuration */
|
|
61
|
+
turnstileConfig?: Partial<TCustomConfig['turnstile']>;
|
|
62
|
+
/** Balance configuration */
|
|
63
|
+
balance?: Partial<TCustomConfig['balance']>;
|
|
64
|
+
/** Transactions configuration */
|
|
65
|
+
transactions?: TCustomConfig['transactions'];
|
|
66
|
+
/** Speech configuration */
|
|
67
|
+
speech?: TCustomConfig['speech'];
|
|
68
|
+
/** MCP server configuration */
|
|
69
|
+
mcpConfig?: TCustomConfig['mcpServers'] | null;
|
|
70
|
+
/** File configuration */
|
|
71
|
+
fileConfig?: TFileConfig;
|
|
72
|
+
/** Secure image links configuration */
|
|
73
|
+
secureImageLinks?: TCustomConfig['secureImageLinks'];
|
|
74
|
+
/** Processed model specifications */
|
|
75
|
+
modelSpecs?: TCustomConfig['modelSpecs'];
|
|
76
|
+
/** Available tools */
|
|
77
|
+
availableTools?: Record<string, FunctionTool>;
|
|
78
|
+
endpoints?: {
|
|
79
|
+
/** OpenAI endpoint configuration */
|
|
80
|
+
openAI?: Partial<TEndpoint>;
|
|
81
|
+
/** Google endpoint configuration */
|
|
82
|
+
google?: Partial<TEndpoint>;
|
|
83
|
+
/** Bedrock endpoint configuration */
|
|
84
|
+
bedrock?: Partial<TEndpoint>;
|
|
85
|
+
/** Anthropic endpoint configuration */
|
|
86
|
+
anthropic?: Partial<TEndpoint>;
|
|
87
|
+
/** GPT plugins endpoint configuration */
|
|
88
|
+
gptPlugins?: Partial<TEndpoint>;
|
|
89
|
+
/** Azure OpenAI endpoint configuration */
|
|
90
|
+
azureOpenAI?: TAzureConfig;
|
|
91
|
+
/** Assistants endpoint configuration */
|
|
92
|
+
assistants?: Partial<TAssistantEndpoint>;
|
|
93
|
+
/** Azure assistants endpoint configuration */
|
|
94
|
+
azureAssistants?: Partial<TAssistantEndpoint>;
|
|
95
|
+
/** Global endpoint configuration */
|
|
96
|
+
all?: Partial<TEndpoint>;
|
|
97
|
+
};
|
|
98
|
+
}
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
/// <reference types="mongoose/types/inferrawdoctype" />
|
|
26
26
|
import type { Types } from 'mongoose';
|
|
27
27
|
export type ObjectId = Types.ObjectId;
|
|
28
|
+
export * from './app';
|
|
28
29
|
export * from './user';
|
|
29
30
|
export * from './token';
|
|
30
31
|
export * from './convo';
|
|
@@ -45,3 +46,4 @@ export * from './prompts';
|
|
|
45
46
|
export * from './accessRole';
|
|
46
47
|
export * from './aclEntry';
|
|
47
48
|
export * from './group';
|
|
49
|
+
export * from './web';
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
/// <reference types="mongoose/types/virtuals" />
|
|
24
24
|
/// <reference types="mongoose/types/inferschematype" />
|
|
25
25
|
/// <reference types="mongoose/types/inferrawdoctype" />
|
|
26
|
+
import type { DeepPartial } from 'librechat-data-provider';
|
|
26
27
|
import type { Document } from 'mongoose';
|
|
27
28
|
import { CursorPaginationParams } from '~/common';
|
|
28
29
|
export interface IRole extends Document {
|
|
@@ -30,9 +31,6 @@ export interface IRole extends Document {
|
|
|
30
31
|
permissions: {};
|
|
31
32
|
}
|
|
32
33
|
export type RolePermissions = IRole['permissions'];
|
|
33
|
-
type DeepPartial<T> = {
|
|
34
|
-
[K in keyof T]?: T[K] extends object ? DeepPartial<T[K]> : T[K];
|
|
35
|
-
};
|
|
36
34
|
export type RolePermissionsInput = DeepPartial<RolePermissions>;
|
|
37
35
|
export interface CreateRoleRequest {
|
|
38
36
|
name: string;
|
|
@@ -46,4 +44,3 @@ export interface RoleFilterOptions extends CursorPaginationParams {
|
|
|
46
44
|
search?: string;
|
|
47
45
|
hasPermission?: string;
|
|
48
46
|
}
|
|
49
|
-
export {};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { SearchCategories } from 'librechat-data-provider';
|
|
2
|
+
export type TWebSearchKeys = 'serperApiKey' | 'searxngInstanceUrl' | 'searxngApiKey' | 'firecrawlApiKey' | 'firecrawlApiUrl' | 'firecrawlVersion' | 'jinaApiKey' | 'jinaApiUrl' | 'cohereApiKey';
|
|
3
|
+
export type TWebSearchCategories = SearchCategories.PROVIDERS | SearchCategories.SCRAPERS | SearchCategories.RERANKERS;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@librechat/data-schemas",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.30",
|
|
4
4
|
"description": "Mongoose schemas and models for LibreChat",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"homepage": "https://librechat.ai",
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@rollup/plugin-alias": "^5.1.0",
|
|
41
|
-
"@rollup/plugin-commonjs": "^
|
|
41
|
+
"@rollup/plugin-commonjs": "^29.0.0",
|
|
42
42
|
"@rollup/plugin-json": "^6.1.0",
|
|
43
43
|
"@rollup/plugin-node-resolve": "^15.1.0",
|
|
44
44
|
"@rollup/plugin-replace": "^5.0.5",
|
|
@@ -48,10 +48,10 @@
|
|
|
48
48
|
"@types/express": "^5.0.0",
|
|
49
49
|
"@types/jest": "^29.5.2",
|
|
50
50
|
"@types/node": "^20.3.0",
|
|
51
|
-
"jest": "^
|
|
51
|
+
"jest": "^30.2.0",
|
|
52
52
|
"jest-junit": "^16.0.0",
|
|
53
53
|
"mongodb-memory-server": "^10.1.4",
|
|
54
|
-
"rimraf": "^
|
|
54
|
+
"rimraf": "^6.1.2",
|
|
55
55
|
"rollup": "^4.22.4",
|
|
56
56
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
57
57
|
"rollup-plugin-typescript2": "^0.35.0",
|