d3ro-voice/packages/api-client/package.json
Yun Chan 0411f389d9
Some checks failed
deploy-site / deploy (push) Failing after 3m26s
feat(release): make the signing-free install work with nothing but Windows
The manual install path still needed 7-Zip, which the target machine does not
have, so "installable without a certificate" was not yet true.

The channel now also publishes the app as byte-split zip parts, and the install
script joins them and extracts with the built-in Windows Expand-Archive after
verifying every part and the joined archive. Version 1.3.1 republishes the
channel from a single build, because a version's artifacts can only match one
build and published volumes are never overwritten.
2026-09-18 12:03:18 +09:00

59 lines
1.3 KiB
JSON

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