@portone/browser-sdk 0.0.1 → 0.0.2
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/README.md +25 -4
- package/dist/chunk-4ed6f045.js +66 -0
- package/dist/chunk-ced8f127.js +13 -0
- package/dist/chunk-f7332846.js +690 -0
- package/dist/loader.d.ts +14 -0
- package/dist/types/utils.d.ts +18 -0
- package/dist/types/v2/entity/Address.d.ts +8 -0
- package/dist/types/v2/entity/Bank.d.ts +78 -0
- package/dist/types/v2/entity/BillingKeyMethod.d.ts +7 -0
- package/dist/types/v2/entity/CardCompany.d.ts +25 -0
- package/dist/types/v2/entity/Carrier.d.ts +18 -0
- package/dist/types/v2/entity/CashReceiptType.d.ts +6 -0
- package/dist/types/v2/entity/Country.d.ts +252 -0
- package/dist/types/v2/entity/Currency.d.ts +184 -0
- package/dist/types/v2/entity/Customer.d.ts +15 -0
- package/dist/types/v2/entity/EasyPayProvider.d.ts +20 -0
- package/dist/types/v2/entity/FreeInstallmentPlan.d.ts +19 -0
- package/dist/types/v2/entity/Gender.d.ts +6 -0
- package/dist/types/v2/entity/GiftCertificateType.d.ts +7 -0
- package/dist/types/v2/entity/Installment.d.ts +24 -0
- package/dist/types/v2/entity/Locale.d.ts +6 -0
- package/dist/types/v2/entity/OfferPeriod.d.ts +27 -0
- package/dist/types/v2/entity/PayMethod.d.ts +1 -0
- package/dist/types/v2/entity/PgProvider.d.ts +44 -0
- package/dist/types/v2/entity/Product.d.ts +8 -0
- package/dist/types/v2/entity/ProductType.d.ts +10 -0
- package/dist/types/v2/entity/StoreDetails.d.ts +14 -0
- package/dist/types/v2/entity/TransactionType.d.ts +12 -0
- package/dist/types/v2/entity/WindowType.d.ts +15 -0
- package/dist/types/v2/entity/bypass/identityVerification/Danal.d.ts +23 -0
- package/dist/types/v2/entity/bypass/identityVerification/index.d.ts +4 -0
- package/dist/types/v2/entity/bypass/issueBillingKey/Naverpay.d.ts +8 -0
- package/dist/types/v2/entity/bypass/issueBillingKey/PaypalV2.d.ts +24 -0
- package/dist/types/v2/entity/bypass/issueBillingKey/SmartroV2.d.ts +8 -0
- package/dist/types/v2/entity/bypass/issueBillingKey/index.d.ts +10 -0
- package/dist/types/v2/entity/bypass/payment/Kakaopay.d.ts +3 -0
- package/dist/types/v2/entity/bypass/payment/Ksnet.d.ts +7 -0
- package/dist/types/v2/entity/bypass/payment/Naverpay.d.ts +31 -0
- package/dist/types/v2/entity/bypass/payment/NiceV2.d.ts +39 -0
- package/dist/types/v2/entity/bypass/payment/PaypalV2.d.ts +44 -0
- package/dist/types/v2/entity/bypass/payment/SmartroV2.d.ts +9 -0
- package/dist/types/v2/entity/bypass/payment/Tosspayments.d.ts +8 -0
- package/dist/types/v2/entity/bypass/payment/TosspaymentsBrandpay.d.ts +27 -0
- package/dist/types/v2/entity/bypass/payment/index.d.ts +18 -0
- package/dist/types/v2/entity/index.d.ts +27 -0
- package/dist/types/v2/entity/index.js +2 -0
- package/dist/types/v2/exception/CheckoutServiceErrorCode.d.ts +1 -0
- package/dist/types/v2/exception/GrpcErrorCode.d.ts +1 -0
- package/dist/types/v2/exception/IdentityVerificationError.d.ts +20 -0
- package/dist/types/v2/exception/IssueBillingKeyError.d.ts +19 -0
- package/dist/types/v2/exception/PaymentError.d.ts +20 -0
- package/dist/types/v2/exception/TxServiceIdentityVerificationErrorCode.d.ts +1 -0
- package/dist/types/v2/exception/TxServiceIssueErrorCode.d.ts +1 -0
- package/dist/types/v2/exception/TxServicePayErrorCode.d.ts +1 -0
- package/dist/types/v2/exception/index.d.ts +7 -0
- package/dist/types/v2/exception/index.js +2 -0
- package/dist/types/v2/index.d.ts +5 -0
- package/dist/types/v2/request/IdentityVerification.d.ts +14 -0
- package/dist/types/v2/request/IssueBillingKey.d.ts +38 -0
- package/dist/types/v2/request/Payment.d.ts +79 -0
- package/dist/types/v2/request/index.d.ts +5 -0
- package/dist/types/v2/response/IdentityVerification.d.ts +13 -0
- package/dist/types/v2/response/IssueBillingKey.d.ts +12 -0
- package/dist/types/v2/response/Payment.d.ts +13 -0
- package/dist/types/v2/response/index.d.ts +5 -0
- package/dist/v2-entity.js +2 -0
- package/dist/v2-exception.js +2 -0
- package/dist/v2.d.ts +11 -0
- package/dist/v2.js +75 -0
- package/package.json +60 -9
- package/v2/index.d.ts +0 -1120
- package/v2/index.js +0 -84
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { CapsToCamel } from '../../utils.js';
|
|
2
|
+
import { Entity } from '../index.js';
|
|
3
|
+
type BillingKeyMethodOptions<Method extends Entity.BillingKeyMethod, T> = {
|
|
4
|
+
billingKeyMethod: Method;
|
|
5
|
+
} & {
|
|
6
|
+
[K in Method as CapsToCamel<K>]?: T;
|
|
7
|
+
};
|
|
8
|
+
type IssueBillingKeyRequest = {
|
|
9
|
+
displayAmount?: number;
|
|
10
|
+
currency?: Entity.Currency;
|
|
11
|
+
storeId: string;
|
|
12
|
+
channelKey?: string;
|
|
13
|
+
pgProvider?: Entity.PgProvider;
|
|
14
|
+
isTestChannel?: boolean;
|
|
15
|
+
billingKeyMethod: Entity.BillingKeyMethod;
|
|
16
|
+
issueName?: string;
|
|
17
|
+
issueId?: string;
|
|
18
|
+
billingKey?: string;
|
|
19
|
+
customer?: Entity.Customer;
|
|
20
|
+
windowType?: Entity.WindowTypes;
|
|
21
|
+
redirectUrl?: string;
|
|
22
|
+
locale?: Entity.Locale;
|
|
23
|
+
customData?: Record<string, any>;
|
|
24
|
+
appScheme?: string;
|
|
25
|
+
noticeUrls?: string[];
|
|
26
|
+
bypass?: Entity.IssueBillingKeyBypass;
|
|
27
|
+
} & (BillingKeyMethodOptions<'CARD', Card> | BillingKeyMethodOptions<'MOBILE', Mobile> | BillingKeyMethodOptions<'EASY_PAY', EasyPay> | BillingKeyMethodOptions<'PAYPAL', Paypal>);
|
|
28
|
+
type Card = {
|
|
29
|
+
cardCompany?: Entity.CardCompany;
|
|
30
|
+
};
|
|
31
|
+
type EasyPay = {
|
|
32
|
+
availableCards?: Entity.CardCompany[];
|
|
33
|
+
};
|
|
34
|
+
type Mobile = {
|
|
35
|
+
carrier?: Entity.Carrier;
|
|
36
|
+
};
|
|
37
|
+
type Paypal = Record<string, never>;
|
|
38
|
+
export default IssueBillingKeyRequest;
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
import { CapsToCamel, OneOfType } from '../../utils.js';
|
|
2
|
+
import { Entity } from '../index.js';
|
|
3
|
+
type PayMethodOptions<Method extends Entity.PayMethod, T> = {
|
|
4
|
+
payMethod: Method;
|
|
5
|
+
} & {
|
|
6
|
+
[K in Method as CapsToCamel<K>]?: T;
|
|
7
|
+
};
|
|
8
|
+
type PaymentRequest = {
|
|
9
|
+
storeId: string;
|
|
10
|
+
paymentId: string;
|
|
11
|
+
orderName: string;
|
|
12
|
+
totalAmount: number;
|
|
13
|
+
channelKey?: string;
|
|
14
|
+
pgProvider?: Entity.PgProvider;
|
|
15
|
+
isTestChannel?: boolean;
|
|
16
|
+
taxFreeAmount?: number;
|
|
17
|
+
vatAmount?: number;
|
|
18
|
+
customer?: Entity.Customer;
|
|
19
|
+
windowType?: Entity.WindowTypes;
|
|
20
|
+
redirectUrl?: string;
|
|
21
|
+
noticeUrls?: string[];
|
|
22
|
+
confirmUrl?: string;
|
|
23
|
+
appScheme?: string;
|
|
24
|
+
isEscrow?: boolean;
|
|
25
|
+
products?: Entity.Product[];
|
|
26
|
+
isCulturalExpense?: boolean;
|
|
27
|
+
currency: Entity.Currency;
|
|
28
|
+
locale?: Entity.Locale;
|
|
29
|
+
customData?: Record<string, any>;
|
|
30
|
+
offerPeriod?: Entity.OfferPeriod;
|
|
31
|
+
productType?: Entity.ProductType;
|
|
32
|
+
storeDetails?: Entity.StoreDetails;
|
|
33
|
+
bypass?: Entity.PaymentBypass;
|
|
34
|
+
country?: Entity.Country;
|
|
35
|
+
shippingAddress?: Entity.Address;
|
|
36
|
+
} & (PayMethodOptions<'CARD', Card> | PayMethodOptions<'VIRTUAL_ACCOUNT', VirtualAccount> | PayMethodOptions<'TRANSFER', Transfer> | PayMethodOptions<'MOBILE', Mobile> | PayMethodOptions<'GIFT_CERTIFICATE', GiftCertificate> | PayMethodOptions<'EASY_PAY', EasyPay> | PayMethodOptions<'PAYPAL', Paypal>);
|
|
37
|
+
type Card = {
|
|
38
|
+
cardCompany?: Entity.CardCompany;
|
|
39
|
+
installment?: Entity.Installment;
|
|
40
|
+
useCardPoint?: boolean;
|
|
41
|
+
useAppCardOnly?: boolean;
|
|
42
|
+
availableCards?: Entity.CardCompany[];
|
|
43
|
+
useFreeInterestFromMall?: boolean;
|
|
44
|
+
};
|
|
45
|
+
type VirtualAccount = {
|
|
46
|
+
cashReceiptType?: Entity.CashReceiptType;
|
|
47
|
+
customerIdentifier?: string;
|
|
48
|
+
accountExpiry?: OneOfType<{
|
|
49
|
+
validHours: number;
|
|
50
|
+
dueDate: string;
|
|
51
|
+
}>;
|
|
52
|
+
bankCode?: Entity.Bank;
|
|
53
|
+
fixedOption?: OneOfType<{
|
|
54
|
+
pgAccountId: string;
|
|
55
|
+
accountNumber: string;
|
|
56
|
+
}>;
|
|
57
|
+
};
|
|
58
|
+
type Transfer = {
|
|
59
|
+
cashReceiptType?: Entity.CashReceiptType;
|
|
60
|
+
customerIdentifier?: string;
|
|
61
|
+
bankCode?: Entity.Bank;
|
|
62
|
+
};
|
|
63
|
+
type Mobile = {
|
|
64
|
+
carrier?: Entity.Carrier;
|
|
65
|
+
};
|
|
66
|
+
type GiftCertificate = {
|
|
67
|
+
giftCertificateType?: Entity.GiftCertificateType;
|
|
68
|
+
};
|
|
69
|
+
type EasyPay = {
|
|
70
|
+
easyPayProvider?: Entity.EasyPayProvider;
|
|
71
|
+
installment?: Entity.Installment;
|
|
72
|
+
availableCards?: Entity.CardCompany[];
|
|
73
|
+
useFreeInterestFromMall?: boolean;
|
|
74
|
+
cashReceiptType?: Entity.CashReceiptType;
|
|
75
|
+
customerIdentifier?: string;
|
|
76
|
+
useCardPoint?: boolean;
|
|
77
|
+
};
|
|
78
|
+
type Paypal = Record<string, never>;
|
|
79
|
+
export default PaymentRequest;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import IdentityVerification from './IdentityVerification.js';
|
|
2
|
+
import IssueBillingKey from './IssueBillingKey.js';
|
|
3
|
+
import Payment from './Payment.js';
|
|
4
|
+
type Transaction = Payment | IssueBillingKey | IdentityVerification;
|
|
5
|
+
export type { IdentityVerification, IssueBillingKey, Payment, Transaction };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Entity } from '../index.js';
|
|
2
|
+
/**
|
|
3
|
+
* iframe/popup 방식으로 PG사 창이 렌더링 된 경우
|
|
4
|
+
* 프로세스 종료 후, 콜백 함수로 전달 될 본인인증 정보 데이터
|
|
5
|
+
*/
|
|
6
|
+
type IdentityVerificationResponse = {
|
|
7
|
+
transactionType: typeof Entity.TransactionType.IDENTITY_VERIFICATION;
|
|
8
|
+
identityVerificationId?: string;
|
|
9
|
+
identityVerificationTxId: string;
|
|
10
|
+
code?: string;
|
|
11
|
+
message?: string;
|
|
12
|
+
};
|
|
13
|
+
export default IdentityVerificationResponse;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Entity } from '../index.js';
|
|
2
|
+
/**
|
|
3
|
+
* iframe/popup 방식으로 PG사 창이 렌더링 된 경우
|
|
4
|
+
* 프로세스 종료 후, 콜백 함수로 전달 될 빌링키 발급 정보 데이터
|
|
5
|
+
*/
|
|
6
|
+
type IssueBillingKeyResponse = {
|
|
7
|
+
transactionType: typeof Entity.TransactionType.ISSUE_BILLING_KEY;
|
|
8
|
+
billingKey?: string;
|
|
9
|
+
code?: string;
|
|
10
|
+
message?: string;
|
|
11
|
+
};
|
|
12
|
+
export default IssueBillingKeyResponse;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Entity } from '../index.js';
|
|
2
|
+
/**
|
|
3
|
+
* iframe/popup 방식으로 PG사 창이 렌더링 된 경우
|
|
4
|
+
* 프로세스 종료 후, 콜백 함수로 전달 될 결제 정보 데이터
|
|
5
|
+
*/
|
|
6
|
+
type PaymentResponse = {
|
|
7
|
+
transactionType: typeof Entity.TransactionType.PAYMENT;
|
|
8
|
+
txId: string;
|
|
9
|
+
paymentId?: string;
|
|
10
|
+
code?: string;
|
|
11
|
+
message?: string;
|
|
12
|
+
};
|
|
13
|
+
export default PaymentResponse;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import IdentityVerification from './IdentityVerification.js';
|
|
2
|
+
import IssueBillingKey from './IssueBillingKey.js';
|
|
3
|
+
import Payment from './Payment.js';
|
|
4
|
+
type Transaction = IdentityVerification | IssueBillingKey | Payment;
|
|
5
|
+
export type { IdentityVerification, IssueBillingKey, Payment, Transaction };
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export { B as Bank, a as BillingKeyMethod, C as CardCompany, b as Carrier, c as Country, d as Currency, E as EasyPayProvider, G as Gender, e as GiftCertificateType, L as Locale, P as PgProvider, W as WindowType } from './chunk-f7332846.js';
|
|
2
|
+
export { T as TransactionType } from './chunk-ced8f127.js';
|
package/dist/v2.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Request, Response, Entity, Exception } from './types/v2/index.js';
|
|
2
|
+
import { setPortOneJsSdkUrl } from './loader.js';
|
|
3
|
+
export declare function requestPayment(request: Request.Payment): Promise<Response.Payment | undefined>;
|
|
4
|
+
export declare function requestIssueBillingKey(request: Request.IssueBillingKey): Promise<Response.IssueBillingKey | undefined>;
|
|
5
|
+
declare const PortOne: {
|
|
6
|
+
requestPayment: typeof requestPayment;
|
|
7
|
+
requestIssueBillingKey: typeof requestIssueBillingKey;
|
|
8
|
+
};
|
|
9
|
+
export { Request, Response, Entity, Exception };
|
|
10
|
+
export { setPortOneJsSdkUrl as __INTERNAL__setPortOneSdkUrl };
|
|
11
|
+
export default PortOne;
|
package/dist/v2.js
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
export { i as Entity } from './chunk-f7332846.js';
|
|
2
|
+
export { i as Exception } from './chunk-4ed6f045.js';
|
|
3
|
+
import './chunk-ced8f127.js';
|
|
4
|
+
|
|
5
|
+
var index$1 = /*#__PURE__*/Object.freeze({
|
|
6
|
+
__proto__: null
|
|
7
|
+
});
|
|
8
|
+
|
|
9
|
+
var index = /*#__PURE__*/Object.freeze({
|
|
10
|
+
__proto__: null
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
var _a;
|
|
14
|
+
let promise = null;
|
|
15
|
+
const portone = {
|
|
16
|
+
jsSdkUrl: (_a = undefined) !== null && _a !== void 0 ? _a : 'https://cdn.portone.io/v2/browser-sdk.js',
|
|
17
|
+
};
|
|
18
|
+
function findScript() {
|
|
19
|
+
return document.querySelector(`script[src="${portone.jsSdkUrl}"]`);
|
|
20
|
+
}
|
|
21
|
+
function injectScript() {
|
|
22
|
+
const script = document.createElement('script');
|
|
23
|
+
script.src = portone.jsSdkUrl;
|
|
24
|
+
const headOrBody = document.head || document.body;
|
|
25
|
+
if (!headOrBody)
|
|
26
|
+
throw new Error('[PortOne] Expected document.body not to be null');
|
|
27
|
+
return headOrBody.appendChild(script);
|
|
28
|
+
}
|
|
29
|
+
function loadScript() {
|
|
30
|
+
if (promise != null) {
|
|
31
|
+
// SDK is already loaded
|
|
32
|
+
return promise;
|
|
33
|
+
}
|
|
34
|
+
return (promise = new Promise((resolve, reject) => {
|
|
35
|
+
if (window.PortOne) {
|
|
36
|
+
// window.PortOne is already injected by CDN
|
|
37
|
+
return resolve(window.PortOne);
|
|
38
|
+
}
|
|
39
|
+
try {
|
|
40
|
+
// window.PortOne will be injected by @portone/browser-sdk
|
|
41
|
+
const script = findScript() || injectScript();
|
|
42
|
+
script.addEventListener('load', () => {
|
|
43
|
+
// script has just loaded
|
|
44
|
+
if (window.PortOne) {
|
|
45
|
+
// window.PortOne is successfully injected @portone/browser-sdk
|
|
46
|
+
return resolve(window.PortOne);
|
|
47
|
+
}
|
|
48
|
+
reject(new Error('[PortOne] Failed to load window.PortOne'));
|
|
49
|
+
});
|
|
50
|
+
script.addEventListener('error', () => {
|
|
51
|
+
reject(new Error('[PortOne] Failed to load window.PortOne'));
|
|
52
|
+
});
|
|
53
|
+
}
|
|
54
|
+
catch (error) {
|
|
55
|
+
return reject(error);
|
|
56
|
+
}
|
|
57
|
+
}));
|
|
58
|
+
}
|
|
59
|
+
function setPortOneJsSdkUrl(url) {
|
|
60
|
+
return (portone.jsSdkUrl = url);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
function requestPayment(request) {
|
|
64
|
+
return loadScript().then((sdk) => sdk.requestPayment(request));
|
|
65
|
+
}
|
|
66
|
+
function requestIssueBillingKey(request) {
|
|
67
|
+
return loadScript().then((sdk) => sdk.requestIssueBillingKey(request));
|
|
68
|
+
}
|
|
69
|
+
const PortOne = {
|
|
70
|
+
requestPayment,
|
|
71
|
+
requestIssueBillingKey,
|
|
72
|
+
// requestIdentityVerification,
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
export { index$1 as Request, index as Response, setPortOneJsSdkUrl as __INTERNAL__setPortOneSdkUrl, PortOne as default, requestIssueBillingKey, requestPayment };
|
package/package.json
CHANGED
|
@@ -1,21 +1,72 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@portone/browser-sdk",
|
|
3
|
-
"
|
|
4
|
-
"
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.0.2",
|
|
5
|
+
"description": "PortOne SDK for browser",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"PortOne",
|
|
8
|
+
"payment",
|
|
9
|
+
"포트원",
|
|
10
|
+
"결제 연동"
|
|
11
|
+
],
|
|
5
12
|
"author": {
|
|
6
13
|
"name": "portone-dx",
|
|
7
14
|
"email": "support@portone.io"
|
|
8
15
|
},
|
|
9
16
|
"files": [
|
|
10
|
-
"
|
|
17
|
+
"dist"
|
|
11
18
|
],
|
|
19
|
+
"main": "./dist/v2.js",
|
|
20
|
+
"types": "./dist/v2.d.ts",
|
|
21
|
+
"typesVersions": {
|
|
22
|
+
"*": {
|
|
23
|
+
"v2": [
|
|
24
|
+
"dist/v2"
|
|
25
|
+
],
|
|
26
|
+
"types/v2/entity": [
|
|
27
|
+
"dist/types/v2/entity"
|
|
28
|
+
],
|
|
29
|
+
"types/v2/exception": [
|
|
30
|
+
"dist/types/v2/exception"
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"exports": {
|
|
35
|
+
"./v2": {
|
|
36
|
+
"import": {
|
|
37
|
+
"types": "./dist/v2.d.ts",
|
|
38
|
+
"default": "./dist/v2.js"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"./types/v2/entity": {
|
|
42
|
+
"import": {
|
|
43
|
+
"types": "./dist/types/v2/entity/index.d.ts",
|
|
44
|
+
"default": "./dist/v2-entity.js"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"./types/v2/exception": {
|
|
48
|
+
"import": {
|
|
49
|
+
"types": "./dist/types/v2/exception/index.d.ts",
|
|
50
|
+
"default": "./dist/v2-exception.js"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"config": {
|
|
55
|
+
"dirBuild": "./dist",
|
|
56
|
+
"dirSrc": "./src"
|
|
57
|
+
},
|
|
12
58
|
"scripts": {
|
|
13
|
-
"build": "
|
|
14
|
-
"prepublishOnly": "npm run build"
|
|
15
|
-
"sync": "deno run -A scripts/sync.ts && deno fmt src/types"
|
|
59
|
+
"build": "rollup -c && tsconfig-replace-paths -s src",
|
|
60
|
+
"prepublishOnly": "npm run build"
|
|
16
61
|
},
|
|
17
62
|
"devDependencies": {
|
|
18
|
-
"
|
|
19
|
-
"
|
|
63
|
+
"@rollup/plugin-alias": "^5.0.0",
|
|
64
|
+
"@rollup/plugin-multi-entry": "^6.0.0",
|
|
65
|
+
"@rollup/plugin-replace": "^5.0.2",
|
|
66
|
+
"@rollup/plugin-typescript": "^11.1.2",
|
|
67
|
+
"rollup": "^3.26.3",
|
|
68
|
+
"tsconfig-replace-paths": "^0.0.14",
|
|
69
|
+
"tslib": "^2.6.0",
|
|
70
|
+
"typescript": "^5.1.6"
|
|
20
71
|
}
|
|
21
|
-
}
|
|
72
|
+
}
|