testaugnitosdk2 1.0.12
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/README.md +442 -0
- package/dist/Augnito.d.ts +130 -0
- package/dist/AugnitoMobile.d.ts +13 -0
- package/dist/api/BaseAPI.d.ts +32 -0
- package/dist/api/FactoryAPI.d.ts +25 -0
- package/dist/api/Formatting/FormattingAPI.d.ts +15 -0
- package/dist/api/Formatting/FormattingModels.d.ts +29 -0
- package/dist/api/Macros/MacrosAPI.d.ts +28 -0
- package/dist/api/Macros/MacrosModels.d.ts +32 -0
- package/dist/api/MedicineOrdering/MedicineOrderderingData.d.ts +6 -0
- package/dist/api/MedicineOrdering/MedicineOrderingAPI.d.ts +15 -0
- package/dist/api/MedicineOrdering/MedicineOrderingModels.d.ts +26 -0
- package/dist/api/Vocabulary/VocabularyAPI.d.ts +31 -0
- package/dist/api/Vocabulary/VocabularyModels.d.ts +38 -0
- package/dist/api/index.d.ts +9 -0
- package/dist/augnitosdk.js +11067 -0
- package/dist/client/MobileClient.d.ts +17 -0
- package/dist/client/NotificationClient.d.ts +25 -0
- package/dist/client/PhilipsMicClient.d.ts +17 -0
- package/dist/client/WebClient.d.ts +59 -0
- package/dist/commands/AugnitoCommands.d.ts +93 -0
- package/dist/commands/AugnitoCommandsRegex.d.ts +9 -0
- package/dist/commands/AugnitoCommandsStatic.d.ts +6 -0
- package/dist/commands/AugnitoCustomCommands.d.ts +8 -0
- package/dist/commands/index.d.ts +1 -0
- package/dist/commands/utils/CustomCommandModel.d.ts +5 -0
- package/dist/commands/utils/TextToWordInteger.d.ts +5 -0
- package/dist/config/AugnitoConfig.d.ts +113 -0
- package/dist/config/AugnitoFormattingConfig.d.ts +10 -0
- package/dist/config/AugnitoMobileConfig.d.ts +7 -0
- package/dist/config/AugnitoVocabularyConfig.d.ts +10 -0
- package/dist/config/ConfigValidator.d.ts +15 -0
- package/dist/config/IConfiguration .d.ts +35 -0
- package/dist/config/PhilipsMicConfig.d.ts +8 -0
- package/dist/config/SDKConfig.d.ts +40 -0
- package/dist/config/SDKConfigMobile.d.ts +21 -0
- package/dist/config/index.d.ts +4 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +188 -0
- package/dist/interop/core/CommonEditorUtils.d.ts +10 -0
- package/dist/interop/core/EditorHandler.d.ts +35 -0
- package/dist/interop/core/EditorType.d.ts +8 -0
- package/dist/interop/core/PhilipsMicMode.d.ts +6 -0
- package/dist/interop/core/ProcessorFactory.d.ts +9 -0
- package/dist/interop/core/ProcessorHandler.d.ts +35 -0
- package/dist/interop/core/RichEditClientCommand.d.ts +416 -0
- package/dist/interop/core/TargetEditor.d.ts +7 -0
- package/dist/interop/index.d.ts +3 -0
- package/dist/interop/processors/BaseInteropProcessor.d.ts +10 -0
- package/dist/interop/processors/CKEditor4InteropProcessor.d.ts +14 -0
- package/dist/interop/processors/CKEditor5InteropProcessor.d.ts +17 -0
- package/dist/interop/processors/CommonContentEditableProcessor.d.ts +63 -0
- package/dist/interop/processors/DevExpressRichEditProcessor.d.ts +14 -0
- package/dist/interop/processors/GenericInteropProcessor.d.ts +11 -0
- package/dist/interop/processors/HTMLInteropProcessor.d.ts +41 -0
- package/dist/interop/processors/InteropProcessor.d.ts +11 -0
- package/dist/interop/processors/InteropProcessorCommon.d.ts +21 -0
- package/dist/interop/types/AnchoredEditorData.d.ts +4 -0
- package/dist/interop/types/CKEditorExtensions.d.ts +8 -0
- package/dist/interop/types/CommonTypes.d.ts +27 -0
- package/dist/interop/types/DynamicBadge.d.ts +5 -0
- package/dist/interop/types/DynamicSelect.d.ts +14 -0
- package/dist/recipe/ActionRecipe.d.ts +19 -0
- package/dist/recipe/index.d.ts +1 -0
- package/dist/support/AugnitoMobileSocketResponse.d.ts +19 -0
- package/dist/support/AugnitoNotificationMessage.d.ts +9 -0
- package/dist/support/AugnitoSDKErrorMessage.d.ts +7 -0
- package/dist/support/AugnitoSDKErrors.d.ts +7 -0
- package/dist/support/AugnitoSDKEvent.d.ts +11 -0
- package/dist/support/AugnitoServerStatusCode.d.ts +7 -0
- package/dist/support/AugnitoSocketResponse.d.ts +17 -0
- package/dist/support/AugnitoSource.d.ts +17 -0
- package/dist/support/AugnitoStatus.d.ts +27 -0
- package/dist/utils/AugnitoDomainUtils.d.ts +8 -0
- package/dist/utils/AugnitoUtils.d.ts +11 -0
- package/dist/utils/Guard.d.ts +11 -0
- package/dist/utils/Logger.d.ts +6 -0
- package/dist/utils/RichEditAction.d.ts +11 -0
- package/package.json +79 -0
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EditorType } from '../core/EditorType';
|
|
2
|
+
import { ActionRecipe } from '../../recipe/ActionRecipe';
|
|
3
|
+
import { BaseInteropProcessor } from './BaseInteropProcessor';
|
|
4
|
+
import { InteropProcessor } from './InteropProcessor';
|
|
5
|
+
type HTMLEditor = HTMLTextAreaElement | HTMLInputElement;
|
|
6
|
+
declare class HTMLInteropProcessor extends BaseInteropProcessor implements InteropProcessor {
|
|
7
|
+
constructor(loggingEnabled: boolean);
|
|
8
|
+
private _buffer;
|
|
9
|
+
get buffer(): string;
|
|
10
|
+
get editorType(): EditorType;
|
|
11
|
+
processFinalResult(recipe: Partial<ActionRecipe>, editor: HTMLEditor): void;
|
|
12
|
+
processCommand(command: Partial<ActionRecipe>, editor: HTMLEditor): boolean;
|
|
13
|
+
private stringWriteAtCaret;
|
|
14
|
+
private selectWordLineSentence;
|
|
15
|
+
private getDelimiterArray;
|
|
16
|
+
private isTextSelected;
|
|
17
|
+
private deleteSelected;
|
|
18
|
+
private getSelectedText;
|
|
19
|
+
private copySelected;
|
|
20
|
+
private undo;
|
|
21
|
+
private redo;
|
|
22
|
+
private print;
|
|
23
|
+
private getStartOfLine;
|
|
24
|
+
private getEndOfLine;
|
|
25
|
+
/**
|
|
26
|
+
* We called this part of code, client side beatification.
|
|
27
|
+
* In client side beatification text need to be processed for better formatting
|
|
28
|
+
* @param receivedText The Final text received by the server
|
|
29
|
+
* @param caretPosition The cursor position in the current editor
|
|
30
|
+
* @param currentText The current content in the editor
|
|
31
|
+
*/
|
|
32
|
+
private beautify;
|
|
33
|
+
private trimLeft;
|
|
34
|
+
private setCaretPosition;
|
|
35
|
+
private fireEvents;
|
|
36
|
+
private getCaretPosition;
|
|
37
|
+
private searchDynamicFiled;
|
|
38
|
+
private searchDynamicFieldForward;
|
|
39
|
+
private searchDynamicFieldBackward;
|
|
40
|
+
}
|
|
41
|
+
export { HTMLInteropProcessor };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { EditorType } from '../core/EditorType';
|
|
2
|
+
import { ActionRecipe } from '../../recipe/ActionRecipe';
|
|
3
|
+
interface InteropProcessor {
|
|
4
|
+
/** The Type of the current Processor */
|
|
5
|
+
editorType: EditorType;
|
|
6
|
+
/** Adds string content to the focused editor */
|
|
7
|
+
processFinalResult(recipe: Partial<ActionRecipe>, editor?: Element | any): void;
|
|
8
|
+
/** Process the voice command in the current focused editor */
|
|
9
|
+
processCommand(command: Partial<ActionRecipe>, editor?: Element | any): void;
|
|
10
|
+
}
|
|
11
|
+
export { InteropProcessor };
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
declare abstract class InteropProcessorCommon {
|
|
2
|
+
/**
|
|
3
|
+
* @description
|
|
4
|
+
* Makes First Letter in Capital
|
|
5
|
+
*
|
|
6
|
+
* @param {String} newProcessText The text received
|
|
7
|
+
* @param {Number} position The starting position
|
|
8
|
+
*/
|
|
9
|
+
static capitalizeFirstLetter(newProcessText: string, position: number): string;
|
|
10
|
+
static beautify(newProcessText: string): string;
|
|
11
|
+
/** Some beautification */
|
|
12
|
+
static processText: (newProcessText: string, IsLastFullstop: boolean, IsLastNewLine: boolean, currentPosition: number, cursorInSameLine: boolean, IsLastSpace: boolean) => string;
|
|
13
|
+
static ProcessText: (receivedText: any, lastCharList: any, documentTextLength: any, interval: any) => {
|
|
14
|
+
ReceivedText: any;
|
|
15
|
+
EndLine: boolean;
|
|
16
|
+
};
|
|
17
|
+
static trimWithoutNewLine: (newProcessText: string) => string;
|
|
18
|
+
static lTrim: (text: string) => string;
|
|
19
|
+
static replaceSpaceAfterNewline: (text: string) => string;
|
|
20
|
+
}
|
|
21
|
+
export { InteropProcessorCommon };
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { WrappedRange } from 'augnito-dom-ranges';
|
|
2
|
+
type TraverseTextNodeResult = {
|
|
3
|
+
rangeBeforeProcess: WrappedRange;
|
|
4
|
+
rangeAfterProcess: WrappedRange | undefined;
|
|
5
|
+
isCursorInSameLine: boolean;
|
|
6
|
+
lastChar: string;
|
|
7
|
+
lastImmediateChar: string;
|
|
8
|
+
};
|
|
9
|
+
type FindLastCharType = {
|
|
10
|
+
lastChar: string;
|
|
11
|
+
lastImmediateChar: string;
|
|
12
|
+
cursorInSameLine: boolean;
|
|
13
|
+
isLastFullStop: boolean;
|
|
14
|
+
isLastNewLine: boolean;
|
|
15
|
+
};
|
|
16
|
+
declare abstract class NodeTypes {
|
|
17
|
+
static readonly NODE_ELEMENT = 1;
|
|
18
|
+
static readonly NODE_TEXT = 3;
|
|
19
|
+
}
|
|
20
|
+
declare abstract class ContentEditableLineBreakTags {
|
|
21
|
+
static readonly linkBreakElement = "br";
|
|
22
|
+
static readonly divLinkBreakElement = "div";
|
|
23
|
+
static readonly paragraphLinkBreakElement = "p";
|
|
24
|
+
static readonly listLinkBreakElement = "li";
|
|
25
|
+
static readonly lineBreakElements: string[];
|
|
26
|
+
}
|
|
27
|
+
export { TraverseTextNodeResult, FindLastCharType, NodeTypes, ContentEditableLineBreakTags };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { WrappedRange } from 'augnito-dom-ranges';
|
|
2
|
+
import { DynamicBadge } from './DynamicBadge';
|
|
3
|
+
export declare class DynamicSelect {
|
|
4
|
+
private _ranges;
|
|
5
|
+
private _selectFor?;
|
|
6
|
+
private badges;
|
|
7
|
+
constructor(document: Document, _ranges: WrappedRange[], _selectFor?: string | undefined);
|
|
8
|
+
removeBadges(): void;
|
|
9
|
+
getBadge(index: number): DynamicBadge;
|
|
10
|
+
get selectFor(): string | undefined;
|
|
11
|
+
get length(): number;
|
|
12
|
+
private createBadgesFromRanges;
|
|
13
|
+
private createBadge;
|
|
14
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { AugnitoCommands } from '../commands/AugnitoCommands';
|
|
2
|
+
type ActionRecipe = {
|
|
3
|
+
name: AugnitoCommands | string;
|
|
4
|
+
action: string | AugnitoCommands;
|
|
5
|
+
sessionCode: string;
|
|
6
|
+
final: boolean;
|
|
7
|
+
isCommand: boolean;
|
|
8
|
+
isCustomCommand: boolean;
|
|
9
|
+
receivedText: string;
|
|
10
|
+
receivedTextWithoutSpace: string;
|
|
11
|
+
chooseNumber: number;
|
|
12
|
+
fontSize: number;
|
|
13
|
+
nextPrevious: 'next' | 'previous' | 'last' | string;
|
|
14
|
+
searchText: 'previousword' | 'nextword' | 'all' | string;
|
|
15
|
+
selectFor: 'delete' | 'bold' | 'capitalize' | 'italicize' | 'underline' | 'delete' | 'gotoend' | 'select' | string;
|
|
16
|
+
};
|
|
17
|
+
type PrepareCommandRecipe = Pick<ActionRecipe, 'receivedText'> & Partial<ActionRecipe>;
|
|
18
|
+
type CommandResultRecipe = Pick<ActionRecipe, 'name' | 'sessionCode' | 'final' | 'isCommand' | 'action' | 'receivedText'>;
|
|
19
|
+
export { ActionRecipe, PrepareCommandRecipe, CommandResultRecipe };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ActionRecipe';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
type AugnitoMobileSocketResponse = {
|
|
2
|
+
ToDeviceId: string;
|
|
3
|
+
FromDeviceId: string;
|
|
4
|
+
Type: string;
|
|
5
|
+
SeqId: string;
|
|
6
|
+
Data: AugnitoMobileSocketResponseData;
|
|
7
|
+
};
|
|
8
|
+
type AugnitoMobileSocketResponseData = {
|
|
9
|
+
UserTag: string;
|
|
10
|
+
AppNotification?: AugnitoAppNotification;
|
|
11
|
+
};
|
|
12
|
+
type AugnitoAppNotification = {
|
|
13
|
+
Message: string;
|
|
14
|
+
SubType: string;
|
|
15
|
+
SubscriptionCode: string;
|
|
16
|
+
UserCode: string;
|
|
17
|
+
Word: string;
|
|
18
|
+
};
|
|
19
|
+
export { AugnitoMobileSocketResponse, AugnitoMobileSocketResponseData, AugnitoAppNotification };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
declare enum AugnitoSDKEvent {
|
|
2
|
+
WS_CONNECTING = 1,
|
|
3
|
+
MSG_MEDIA_STREAM_CREATED = 2,
|
|
4
|
+
MSG_INIT_RECORDER = 3,
|
|
5
|
+
MSG_RECORDING = 4,
|
|
6
|
+
MSG_SEND_EMPTY = 6,
|
|
7
|
+
MSG_WEB_SOCKET_OPEN = 9,
|
|
8
|
+
MSG_WEB_SOCKET_CLOSE = 10,
|
|
9
|
+
MSG_STOP = 11
|
|
10
|
+
}
|
|
11
|
+
export { AugnitoSDKEvent };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
type AugnitoSocketResponse = {
|
|
2
|
+
Status: number;
|
|
3
|
+
Event: 'None' | {
|
|
4
|
+
Type: string;
|
|
5
|
+
Value: string;
|
|
6
|
+
};
|
|
7
|
+
Type: string;
|
|
8
|
+
SessionCode: string;
|
|
9
|
+
Result: AugnitoSocketResult;
|
|
10
|
+
};
|
|
11
|
+
type AugnitoSocketResult = {
|
|
12
|
+
Final: boolean;
|
|
13
|
+
IsCommand: boolean;
|
|
14
|
+
Action: string;
|
|
15
|
+
Transcript: string;
|
|
16
|
+
};
|
|
17
|
+
export { AugnitoSocketResponse, AugnitoSocketResult };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @description
|
|
3
|
+
* Augnito Source of Communication
|
|
4
|
+
*/
|
|
5
|
+
declare enum AugnitoSource {
|
|
6
|
+
/**
|
|
7
|
+
* @description
|
|
8
|
+
* Augnito Source of Communication: web application
|
|
9
|
+
*/
|
|
10
|
+
WEB_APP = 0,
|
|
11
|
+
/**
|
|
12
|
+
* @description
|
|
13
|
+
* Augnito Source of Communication: mobile application
|
|
14
|
+
*/
|
|
15
|
+
MOBILE_APP = 1
|
|
16
|
+
}
|
|
17
|
+
export { AugnitoSource };
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @description
|
|
3
|
+
* Current Status of the Microphone
|
|
4
|
+
*/
|
|
5
|
+
declare enum AugnitoStatus {
|
|
6
|
+
/**
|
|
7
|
+
* @description
|
|
8
|
+
* Microphone is On
|
|
9
|
+
*/
|
|
10
|
+
ON = "On",
|
|
11
|
+
/**
|
|
12
|
+
* @description
|
|
13
|
+
* Microphone is Off
|
|
14
|
+
*/
|
|
15
|
+
OFF = "Off",
|
|
16
|
+
/**
|
|
17
|
+
* @description
|
|
18
|
+
* Microphone is Off
|
|
19
|
+
*/
|
|
20
|
+
REQUEST_OFF = "RequestOff",
|
|
21
|
+
/**
|
|
22
|
+
* @description
|
|
23
|
+
* KEY TO be used in localstorage
|
|
24
|
+
*/
|
|
25
|
+
KEY = "AugnitoConnectionStatus"
|
|
26
|
+
}
|
|
27
|
+
export { AugnitoStatus };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { AugnitoAPIServer } from '../config/AugnitoConfig';
|
|
2
|
+
/**
|
|
3
|
+
* Return the path of the domain from an AugnitoAPIServer
|
|
4
|
+
* @param server the current server
|
|
5
|
+
* @returns the domain path
|
|
6
|
+
*/
|
|
7
|
+
declare const getDomainName: (server: AugnitoAPIServer | string) => string;
|
|
8
|
+
export { getDomainName };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Creates a unique identifier. Can be used to generate a DeviceId
|
|
3
|
+
* @returns The newly created UUID
|
|
4
|
+
*/
|
|
5
|
+
declare const createUniqueIdentifier: () => string;
|
|
6
|
+
/**
|
|
7
|
+
* Creates a new timestamp
|
|
8
|
+
* @returns The current timestamp
|
|
9
|
+
*/
|
|
10
|
+
declare const getCurrentTimestamp: () => string;
|
|
11
|
+
export { createUniqueIdentifier, getCurrentTimestamp };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare class Guard {
|
|
2
|
+
private static instance;
|
|
3
|
+
private constructor();
|
|
4
|
+
static get Against(): Guard;
|
|
5
|
+
NullOrUndefined<T>(value: T | undefined, paramName: string): T;
|
|
6
|
+
NullOrEmpty<T>(value: T | undefined, paramName: string): T;
|
|
7
|
+
Enums<T extends {
|
|
8
|
+
[s: string]: unknown;
|
|
9
|
+
}>(e: T, value: any, enumName: string): void;
|
|
10
|
+
private isSomeEnum;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ActionRecipe } from '../recipe';
|
|
2
|
+
export declare const ProcessSelect: (recipe: Partial<ActionRecipe>, RichEdit: any) => boolean;
|
|
3
|
+
export declare const DynamicFiled: (recipe: Partial<ActionRecipe>, RichEdit: any) => void;
|
|
4
|
+
export declare const FindAllText: (recipe: Partial<ActionRecipe>, RichEdit: any) => {
|
|
5
|
+
HighlightButton: any;
|
|
6
|
+
WordInterval: any;
|
|
7
|
+
}[] | undefined;
|
|
8
|
+
export declare const ClearSearch: (RichEdit: any) => void;
|
|
9
|
+
export declare const goToDocumentEnd: (RichEdit: any) => void;
|
|
10
|
+
export declare const ProcessSelectForAction: (SelectFor: string, RichEdit: any) => boolean;
|
|
11
|
+
export declare const ExecuteRichEditorCommand: (commandName: string, RichEdit: any) => void;
|
package/package.json
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "testaugnitosdk2",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "1.0.12",
|
|
5
|
+
"license": "Restricted",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"main": "dist/index.js",
|
|
10
|
+
"types": "dist/index.d.ts",
|
|
11
|
+
"description": "AugnitoSDK lets you make use of the Speech Recognition AI. You can edit, format and complete reports at the speed of human speech, with the best-in-class accuracy",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"Augnito",
|
|
14
|
+
"Speech-To-Text",
|
|
15
|
+
"STT",
|
|
16
|
+
"Voice AI"
|
|
17
|
+
],
|
|
18
|
+
"readmeFilename": "README.md",
|
|
19
|
+
"scripts": {
|
|
20
|
+
"dev": "vite",
|
|
21
|
+
"preview": "vite preview --port 8080",
|
|
22
|
+
"clean": "rm -rf ./dist/* ",
|
|
23
|
+
"clean-win": "if exist dist rd /s /q dist",
|
|
24
|
+
"jsbundle": "node ./build.js",
|
|
25
|
+
"build-typescript": "npm run clean && tsc",
|
|
26
|
+
"build": "npm run clean && rollup -c && npm run jsbundle",
|
|
27
|
+
"build-win": "npm run clean-win && rollup -c && npm run jsbundle",
|
|
28
|
+
"build-debug": "npm run clean-win && rollup -c rollup.debug.config.js && npm run jsbundle",
|
|
29
|
+
"test": "jest --coverage"
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@babel/core": "^7.24.0",
|
|
33
|
+
"@rollup/plugin-babel": "^5.3.1",
|
|
34
|
+
"@rollup/plugin-commonjs": "^21.0.2",
|
|
35
|
+
"@rollup/plugin-json": "^4.1.0",
|
|
36
|
+
"@rollup/plugin-node-resolve": "^13.1.3",
|
|
37
|
+
"@types/ckeditor4": "^4.16.1",
|
|
38
|
+
"@types/jest": "^27.4.1",
|
|
39
|
+
"@types/jquery": "^3.5.30",
|
|
40
|
+
"@typescript-eslint/eslint-plugin": "^5.14.0",
|
|
41
|
+
"@typescript-eslint/parser": "^5.14.0",
|
|
42
|
+
"babel-loader": "^8.3.0",
|
|
43
|
+
"esbuild": "^0.23.0",
|
|
44
|
+
"esbuild-plugin-svgr": "^3.1.0",
|
|
45
|
+
"eslint": "^8.56.0",
|
|
46
|
+
"eslint-config-prettier": "^8.5.0",
|
|
47
|
+
"eslint-plugin-prettier": "^4.0.0",
|
|
48
|
+
"jest": "^27.5.1",
|
|
49
|
+
"jest-junit": "^13.0.0",
|
|
50
|
+
"rollup": "^2.70.0",
|
|
51
|
+
"rollup-plugin-cleanup": "^3.2.1",
|
|
52
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
53
|
+
"rollup-plugin-typescript2": "^0.31.2",
|
|
54
|
+
"ts-jest": "^27.1.4",
|
|
55
|
+
"ts-node": "^10.9.2",
|
|
56
|
+
"typescript": "^4.9.5",
|
|
57
|
+
"vite": "^2.9.17"
|
|
58
|
+
},
|
|
59
|
+
"jest-junit": {
|
|
60
|
+
"suiteNameTemplate": "{filepath}",
|
|
61
|
+
"outputDirectory": ".",
|
|
62
|
+
"outputName": "junit.xml"
|
|
63
|
+
},
|
|
64
|
+
"dependencies": {
|
|
65
|
+
"@types/estree": "^1.0.5",
|
|
66
|
+
"@types/webrtc": "^0.0.43",
|
|
67
|
+
"augnito-dom-ranges": "^0.0.1",
|
|
68
|
+
"augnitorecorder": "^1.0.46",
|
|
69
|
+
"testaugnitorecorder4": "^1.0.52"
|
|
70
|
+
},
|
|
71
|
+
"peerDependencies": {
|
|
72
|
+
"@ckeditor/ckeditor5-core": ">=38.1.1"
|
|
73
|
+
},
|
|
74
|
+
"peerDependenciesMeta": {
|
|
75
|
+
"@ckeditor/ckeditor5-core": {
|
|
76
|
+
"optional": true
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
}
|