d3ro-voice/packages/api-client/package.json
Yun Chan 57c17d0977
Some checks failed
deploy-site / deploy (push) Failing after 13m48s
fix(desktop): recommend the model the app actually uses
The Ollama setup guide still led with two retired models while the app already
defaults to the newer one, so a fresh setup would install a model the app does
not use. The guide now recommends the same model as the rest of the app and
lists current lightweight alternatives.
2026-09-18 17:15:37 +09:00

59 lines
1.3 KiB
JSON

{
"name": "@d3ro/api-client",
"version": "1.3.5",
"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
}
}
}