d3ro-voice/packages/core/package.json
Yun Chan f6a29db95a feat(shared): gate paid features from one entitlement source
Desktop, web, mobile, and the API each decided locally what a tier could do,
so a plan change could unlock a feature on one surface and not another.
Entitlement checks now live in `@d3ro/core` and are exercised by tests.

The shared theme and design-system packages also gain the tokens the new
surfaces consume, and the api-client exposes the dictionary and team types
the clients now send.
2026-09-16 23:24:18 +09:00

57 lines
1.5 KiB
JSON

{
"name": "@d3ro/core",
"version": "1.1.0",
"private": true,
"description": "D3RO Voice 공유 비즈니스 로직 — 타입, 에러, IPC 채널, 상수, 유틸",
"license": "MIT",
"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"
},
"./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"
},
"./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"
},
"./supabase-config": {
"types": "./src/supabase-config.ts",
"default": "./src/supabase-config.ts"
}
},
"dependencies": {
"docx": "^9.6.1"
},
"devDependencies": {
"@types/node": "^22.13.0"
}
}