@linto-ai/transcript-ui-webcomponent 0.9.0

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.
@@ -0,0 +1,13 @@
1
+ import { L, c, a, b, d, e, f, m, r } from "./index-Cf6Ri7kK.js";
2
+ export {
3
+ L as LintoEditor,
4
+ c as createAudioPlugin,
5
+ a as createChatPlugin,
6
+ b as createLLMServicesPlugin,
7
+ d as createLivePlugin,
8
+ e as createSubtitlePlugin,
9
+ f as createTranscriptionEditorPlugin,
10
+ m as mapApiTurns,
11
+ r as register
12
+ };
13
+ //# sourceMappingURL=linto-editor.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"linto-editor.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
package/package.json ADDED
@@ -0,0 +1,58 @@
1
+ {
2
+ "name": "@linto-ai/transcript-ui-webcomponent",
3
+ "version": "0.9.0",
4
+ "description": "@linto-ai/transcript-ui packaged as a <linto-editor> Web Component, for non-Vue hosts",
5
+ "keywords": [
6
+ "web-component",
7
+ "custom-element",
8
+ "transcript",
9
+ "transcription",
10
+ "linto"
11
+ ],
12
+ "sideEffects": true,
13
+ "homepage": "https://github.com/linto-ai/linto-studio",
14
+ "bugs": "https://github.com/linto-ai/linto-studio/issues",
15
+ "author": "Tom Darboux <tdarboux@linagora.com>",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/linto-ai/linto-studio.git",
19
+ "directory": "studio-sdk/components/transcript-ui/packages/webcomponent"
20
+ },
21
+ "type": "module",
22
+ "license": "AGPL-3.0",
23
+ "publishConfig": {
24
+ "access": "public"
25
+ },
26
+ "files": [
27
+ "dist"
28
+ ],
29
+ "main": "./dist/linto-editor.js",
30
+ "module": "./dist/linto-editor.js",
31
+ "unpkg": "./dist/linto-editor.iife.js",
32
+ "jsdelivr": "./dist/linto-editor.iife.js",
33
+ "exports": {
34
+ ".": {
35
+ "import": "./dist/linto-editor.js"
36
+ }
37
+ },
38
+ "scripts": {
39
+ "build": "vue-tsc -b && vite build"
40
+ },
41
+ "devDependencies": {
42
+ "@linto-ai/transcript-ui-core": "0.9.0",
43
+ "@linto-ai/transcript-ui-i18n": "0.9.0",
44
+ "@linto-ai/transcript-ui-ui": "0.9.0",
45
+ "@linto-ai/transcript-ui-plugin-audio": "0.9.0",
46
+ "@linto-ai/transcript-ui-plugin-chat": "0.9.0",
47
+ "@linto-ai/transcript-ui-plugin-live": "0.9.0",
48
+ "@linto-ai/transcript-ui-plugin-llm-services": "0.9.0",
49
+ "@linto-ai/transcript-ui-plugin-subtitle": "0.9.0",
50
+ "@linto-ai/transcript-ui-plugin-transcription-editor": "0.9.0",
51
+ "prismjs": "^1.30.0",
52
+ "vue": "^3.5.25",
53
+ "@types/prismjs": "^1.26.6",
54
+ "@vitejs/plugin-vue": "^6.0.2",
55
+ "vite": "^7.3.1",
56
+ "vue-tsc": "^3.1.5"
57
+ }
58
+ }