Adds next-sentence suggestions while typing, weekly input insights and a personal phrase memory to the desktop app, and fixes custom instructions so they process the text instead of inserting the instruction's own wording. Local model requests are now bounded and individually cancellable. Bumps the product version to 1.5.0 (Android/iOS build 1050000), refreshes the landing and web download links, and records the new INPUT feature rows and the open verification gaps in the infrastructure map.
59 lines
1.3 KiB
JSON
59 lines
1.3 KiB
JSON
{
|
|
"name": "@d3ro/api-client",
|
|
"version": "1.5.0",
|
|
"private": true,
|
|
"description": "D3RO Voice API 클라이언트 — Supabase 래퍼 (web/desktop/mobile 공유)",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"test": "vitest run",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"default": "./src/index.ts"
|
|
},
|
|
"./client": {
|
|
"types": "./src/client.ts",
|
|
"default": "./src/client.ts"
|
|
},
|
|
"./auth": {
|
|
"types": "./src/auth.ts",
|
|
"default": "./src/auth.ts"
|
|
},
|
|
"./meetings": {
|
|
"types": "./src/meetings.ts",
|
|
"default": "./src/meetings.ts"
|
|
},
|
|
"./history": {
|
|
"types": "./src/history.ts",
|
|
"default": "./src/history.ts"
|
|
},
|
|
"./usage": {
|
|
"types": "./src/usage.ts",
|
|
"default": "./src/usage.ts"
|
|
},
|
|
"./supabase-browser": {
|
|
"types": "./src/supabase-browser.ts",
|
|
"default": "./src/supabase-browser.ts"
|
|
},
|
|
"./supabase-server": {
|
|
"types": "./src/supabase-server.ts",
|
|
"default": "./src/supabase-server.ts"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@d3ro/core": "*",
|
|
"@supabase/supabase-js": "^2.45.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@supabase/ssr": ">=0.10.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@supabase/ssr": {
|
|
"optional": true
|
|
}
|
|
}
|
|
}
|