The phone draws a meeting from its transcript segments before the edited
transcript, so desktop edits, auto-polish and diarization never showed there.
Every desktop transcript change now rebuilds the meeting's segments from its
[MM:SS] [speaker] lines and trims the rest; the line parser moves to
@d3ro/core/meeting-transcript and the meeting view uses it too.
Prompt edits of the four desktop presets that exist on the phone update the
server preset row (a reset restores its default; {{targetLanguage}} is sent
as English, the only target on both sides), and edits made on another desktop
come back. The free-prompt preset has no phone counterpart and stays local.
84 lines
2.2 KiB
JSON
84 lines
2.2 KiB
JSON
{
|
|
"name": "@d3ro/core",
|
|
"version": "1.8.0",
|
|
"private": true,
|
|
"description": "D3RO Voice 공유 비즈니스 로직 — 타입, 에러, IPC 채널, 상수, 유틸",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"test": "vitest run"
|
|
},
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"default": "./src/index.ts"
|
|
},
|
|
"./types": {
|
|
"types": "./src/types.ts",
|
|
"default": "./src/types.ts"
|
|
},
|
|
"./keybinding": {
|
|
"types": "./src/keybinding.ts",
|
|
"default": "./src/keybinding.ts"
|
|
},
|
|
"./errors": {
|
|
"types": "./src/errors.ts",
|
|
"default": "./src/errors.ts"
|
|
},
|
|
"./ipc-channels": {
|
|
"types": "./src/ipc-channels.ts",
|
|
"default": "./src/ipc-channels.ts"
|
|
},
|
|
"./constants": {
|
|
"types": "./src/constants.ts",
|
|
"default": "./src/constants.ts"
|
|
},
|
|
"./input-intelligence": {
|
|
"types": "./src/input-intelligence.ts",
|
|
"default": "./src/input-intelligence.ts"
|
|
},
|
|
"./caption-streaming": {
|
|
"types": "./src/caption-streaming.ts",
|
|
"default": "./src/caption-streaming.ts"
|
|
},
|
|
"./meeting-transcript": {
|
|
"types": "./src/meeting-transcript.ts",
|
|
"default": "./src/meeting-transcript.ts"
|
|
},
|
|
"./entitlement": {
|
|
"types": "./src/entitlement.ts",
|
|
"default": "./src/entitlement.ts"
|
|
},
|
|
"./utils/meeting-markdown": {
|
|
"types": "./src/utils/meeting-markdown.ts",
|
|
"default": "./src/utils/meeting-markdown.ts"
|
|
},
|
|
"./utils/markdown-to-docx": {
|
|
"types": "./src/utils/markdown-to-docx.ts",
|
|
"default": "./src/utils/markdown-to-docx.ts"
|
|
},
|
|
"./utils/crypto-license": {
|
|
"types": "./src/utils/crypto-license.ts",
|
|
"default": "./src/utils/crypto-license.ts"
|
|
},
|
|
"./plan-catalog": {
|
|
"types": "./src/plan-catalog.ts",
|
|
"default": "./src/plan-catalog.ts"
|
|
},
|
|
"./web-urls": {
|
|
"types": "./src/web-urls.ts",
|
|
"default": "./src/web-urls.ts"
|
|
},
|
|
"./supabase-config": {
|
|
"types": "./src/supabase-config.ts",
|
|
"default": "./src/supabase-config.ts"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"docx": "^9.6.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.13.0"
|
|
}
|
|
}
|