d3ro-voice/packages/api-client/package.json
Yun Chan 3f1fb8eed5
Some checks failed
ci / 정본·보안·린트·타입·테스트 (push) Successful in 54s
ci / 모바일 린트·타입·Jest (push) Successful in 42s
ci / Supabase Edge Functions + Cloudflare Worker (push) Successful in 22s
ci / .NET API 서버 테스트 (push) Successful in 17s
deploy-site / deploy (push) Successful in 35s
ci / 워크스페이스 빌드 검증 (push) Successful in 37s
release / release-windows (push) Failing after 6m8s
portable-unsigned / portable-windows (push) Failing after 14m8s
release: ship v1.8.0 with knowledge, recording and settings sync
Knowledge documents move between desktop, phone and web as source text and
are indexed on each device; desktop recordings upload to the shared storage
and any recording plays from the history card; language, theme, auto-polish
and the active command follow the phone. Document text survives a missing
embedding model so it can be indexed later.

Bumps the product version to 1.8.0 (Android/iOS build 1080000).
2026-09-27 14:45:19 +09:00

59 lines
1.3 KiB
JSON

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