@rscc/common-core 0.1.2 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@rscc/common-core",
3
- "version": "0.1.2",
4
- "description": "RSCC 공통 코어 — CommonResponse 타입, apiClient 팩토리(traceId 발신/에코), SSE 프레임 파서, JWT 디코더, 마스킹 유틸. 프레임워크 무관, 런타임 의존성 0.",
3
+ "version": "0.3.0",
4
+ "description": "RSCC 공통 코어 — CommonResponse 타입·apiClient(traceId·재시도·멱등성 키), SSE 파서, 회복탄력성(retry·서킷 브레이커·토큰버킷·Bulkhead·TTL 캐시), 보안(마스킹·로그 리댁션·웹훅 서명·JWT 디코드·AES-GCM 서브패스), 와이어 계약 헬퍼, 한국 도메인 유틸. 프레임워크 무관, 런타임 의존성 0.",
5
5
  "keywords": [
6
6
  "rscc",
7
7
  "common-response",
@@ -43,6 +43,16 @@
43
43
  "types": "./dist/index.d.cts",
44
44
  "default": "./dist/index.cjs"
45
45
  }
46
+ },
47
+ "./crypto": {
48
+ "import": {
49
+ "types": "./dist/crypto.d.ts",
50
+ "default": "./dist/crypto.js"
51
+ },
52
+ "require": {
53
+ "types": "./dist/crypto.d.cts",
54
+ "default": "./dist/crypto.cjs"
55
+ }
46
56
  }
47
57
  },
48
58
  "files": [
@@ -50,7 +60,7 @@
50
60
  ],
51
61
  "sideEffects": false,
52
62
  "scripts": {
53
- "build": "tsup src/index.ts --format esm,cjs --dts --clean",
63
+ "build": "tsup src/index.ts src/crypto.ts --format esm,cjs --dts --clean",
54
64
  "test": "vitest run",
55
65
  "prepublishOnly": "npm run build"
56
66
  },