@rscc/common-core 0.1.2 → 0.2.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/dist/crypto.cjs +116 -0
- package/dist/crypto.d.cts +26 -0
- package/dist/crypto.d.ts +26 -0
- package/dist/crypto.js +89 -0
- package/dist/index.cjs +947 -4
- package/dist/index.d.cts +552 -1
- package/dist/index.d.ts +552 -1
- package/dist/index.js +912 -3
- package/package.json +12 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rscc/common-core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "RSCC 공통 코어 — CommonResponse 타입, apiClient 팩토리(traceId 발신/에코), SSE 프레임 파서, JWT 디코더, 마스킹 유틸. 프레임워크 무관, 런타임 의존성 0.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"rscc",
|
|
@@ -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
|
},
|