@skip-go/widget 0.0.1-alpha.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/README.md +89 -0
- package/build/ast/_constants.d.ts +1 -0
- package/build/ast/_types.d.ts +14 -0
- package/build/ast/get-chains-paths.d.ts +6 -0
- package/build/ast/parse-asset-list-json.d.ts +7 -0
- package/build/ast/parse-chain-json.d.ts +7 -0
- package/build/ast/parse-chain-paths.d.ts +9 -0
- package/build/ast/validate-chains-paths.d.ts +6 -0
- package/build/ast/write-entrypoints.d.ts +7 -0
- package/build/chains/assets.d.ts +3 -0
- package/build/chains/chain-infos.d.ts +3 -0
- package/build/chains/chains.d.ts +3 -0
- package/build/chains/explorers.d.ts +3 -0
- package/build/chains/index.d.ts +7 -0
- package/build/chains/pretty.d.ts +2 -0
- package/build/chains/types.d.ts +6 -0
- package/build/constants/abis.d.ts +2 -0
- package/build/constants/defaults.d.ts +5 -0
- package/build/constants/finality.d.ts +2 -0
- package/build/constants/gas.d.ts +3 -0
- package/build/constants/ledger-warning.d.ts +2 -0
- package/build/constants/wagmi.d.ts +2 -0
- package/build/hooks/use-account.d.ts +46 -0
- package/build/hooks/use-assets.d.ts +4 -0
- package/build/hooks/use-auto-set-address.d.ts +11 -0
- package/build/hooks/use-balances-by-chain.d.ts +15 -0
- package/build/hooks/use-bridges.d.ts +7 -0
- package/build/hooks/use-broadcasted-txs.d.ts +24 -0
- package/build/hooks/use-chains.d.ts +10 -0
- package/build/hooks/use-finality-time-estimate.d.ts +2 -0
- package/build/hooks/use-make-wallets.d.ts +21 -0
- package/build/hooks/use-route.d.ts +19 -0
- package/build/hooks/use-skip-client.d.ts +11 -0
- package/build/hooks/use-swap-widget.d.ts +81 -0
- package/build/hooks/use-usd-value.d.ts +8 -0
- package/build/index.d.ts +3 -0
- package/build/index.es.js +4877 -0
- package/build/index.es.js.map +1 -0
- package/build/lib/cosmos-kit.d.ts +3 -0
- package/build/lib/react-query.d.ts +2 -0
- package/build/lib/solana-adapter.d.ts +2 -0
- package/build/lib/viem/chains.d.ts +66 -0
- package/build/lib/wagmi.d.ts +8922 -0
- package/build/provider/assets.d.ts +16 -0
- package/build/provider/index.d.ts +25 -0
- package/build/provider/skip-provider.d.ts +13 -0
- package/build/provider/wallet/cosmos.d.ts +6 -0
- package/build/provider/wallet/evm.d.ts +6 -0
- package/build/provider/wallet/solana.d.ts +6 -0
- package/build/scripts/codegen.d.ts +1 -0
- package/build/store/disclosures.d.ts +44 -0
- package/build/store/settings.d.ts +17 -0
- package/build/store/swap-widget.d.ts +14 -0
- package/build/store/track-wallet.d.ts +24 -0
- package/build/store/tx-history.d.ts +36 -0
- package/build/ui/AdaptiveLink.d.ts +5 -0
- package/build/ui/AssetInput.d.ts +20 -0
- package/build/ui/AssetSelect/AssetSelectContent.d.ts +11 -0
- package/build/ui/AssetSelect/index.d.ts +11 -0
- package/build/ui/AssetValue.d.ts +7 -0
- package/build/ui/Button/HistoryButton.d.ts +2 -0
- package/build/ui/Button/SettingsButton.d.ts +2 -0
- package/build/ui/Button/ShareButton.d.ts +3 -0
- package/build/ui/ChainSelect/ChainSelectContent.d.ts +8 -0
- package/build/ui/ChainSelect/ChainSelectTrigger.d.ts +7 -0
- package/build/ui/ChainSelect/index.d.ts +9 -0
- package/build/ui/ChainSymbol.d.ts +5 -0
- package/build/ui/ConnectedWalletButton.d.ts +8 -0
- package/build/ui/ConversionRate.d.ts +22 -0
- package/build/ui/Dialog/Dialog.d.ts +7 -0
- package/build/ui/Dialog/DialogContent.d.ts +7 -0
- package/build/ui/Dialog/DialogTrigger.d.ts +5 -0
- package/build/ui/Dialog/context.d.ts +7 -0
- package/build/ui/HistoryDialog/DescriptionList.d.ts +5 -0
- package/build/ui/HistoryDialog/HistoryClearButton.d.ts +4 -0
- package/build/ui/HistoryDialog/HistoryList.d.ts +14 -0
- package/build/ui/HistoryDialog/RenderDate.d.ts +5 -0
- package/build/ui/HistoryDialog/SyncState.d.ts +4 -0
- package/build/ui/HistoryDialog/index.d.ts +1 -0
- package/build/ui/Icon/ExpandArrow.d.ts +2 -0
- package/build/ui/Icon/HistoryIcon.d.ts +2 -0
- package/build/ui/Icon/SkipLogo.d.ts +2 -0
- package/build/ui/Icon/SpinnerIcon.d.ts +2 -0
- package/build/ui/JsonDialog.d.ts +1 -0
- package/build/ui/PreviewRoute/AlertCollapse.d.ts +13 -0
- package/build/ui/PreviewRoute/ChainStep.d.ts +30 -0
- package/build/ui/PreviewRoute/SetAddressDialog.d.ts +12 -0
- package/build/ui/PreviewRoute/index.d.ts +18 -0
- package/build/ui/PreviewRoute/make-actions.d.ts +29 -0
- package/build/ui/PreviewRoute/make-chain-ids-with-actions.d.ts +11 -0
- package/build/ui/PreviewRoute/make-step-state.d.ts +17 -0
- package/build/ui/PreviewRoute/types.d.ts +21 -0
- package/build/ui/PriceImpactWarning.d.ts +7 -0
- package/build/ui/SettingsDialog/GasSetting.d.ts +1 -0
- package/build/ui/SettingsDialog/PurgeSetting.d.ts +1 -0
- package/build/ui/SettingsDialog/SaveIndicator.d.ts +1 -0
- package/build/ui/SettingsDialog/SlippageSetting.d.ts +1 -0
- package/build/ui/SettingsDialog/index.d.ts +1 -0
- package/build/ui/SimpleTooltip.d.ts +11 -0
- package/build/ui/SwapDetails.d.ts +11 -0
- package/build/ui/TransactionDialog.d.ts +13 -0
- package/build/ui/UsdValue.d.ts +27 -0
- package/build/ui/WalletModal/WalletListItem.d.ts +8 -0
- package/build/ui/WalletModal/WalletModal.d.ts +10 -0
- package/build/ui/WalletModal/context.d.ts +13 -0
- package/build/ui/WalletModal/index.d.ts +3 -0
- package/build/ui/Widget.d.ts +1 -0
- package/build/ui/index.d.ts +9 -0
- package/build/utils/assert.d.ts +2 -0
- package/build/utils/chain.d.ts +9 -0
- package/build/utils/clients.d.ts +4 -0
- package/build/utils/error.d.ts +1 -0
- package/build/utils/explorer.d.ts +5 -0
- package/build/utils/intl.d.ts +4 -0
- package/build/utils/ledger-warning.d.ts +3 -0
- package/build/utils/link.d.ts +4 -0
- package/build/utils/number.d.ts +4 -0
- package/build/utils/os.d.ts +3 -0
- package/build/utils/random.d.ts +1 -0
- package/build/utils/ui.d.ts +2 -0
- package/build/utils/usd.d.ts +5 -0
- package/build/utils/wallet.d.ts +7 -0
- package/package.json +96 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const GasSetting: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function PurgeSetting(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const SaveIndicator: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const SlippageSetting: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const SettingsDialog: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as Tooltip from '@radix-ui/react-tooltip';
|
|
2
|
+
import { ComponentPropsWithoutRef, ReactNode } from 'react';
|
|
3
|
+
type Props = Tooltip.TooltipProps & {
|
|
4
|
+
type?: 'default' | 'warning' | 'brand';
|
|
5
|
+
enabled?: boolean;
|
|
6
|
+
label: ReactNode;
|
|
7
|
+
children: ReactNode;
|
|
8
|
+
_content?: ComponentPropsWithoutRef<'div'>;
|
|
9
|
+
};
|
|
10
|
+
export declare const SimpleTooltip: (props: Props) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { BridgeType, RouteResponse } from '@skip-router/core';
|
|
2
|
+
import { SwapWidgetStore } from '../hooks/use-swap-widget';
|
|
3
|
+
type Props = SwapWidgetStore & {
|
|
4
|
+
amountOut: string;
|
|
5
|
+
onBridgesChange: (bridges: BridgeType[]) => void;
|
|
6
|
+
priceImpactPercent: number;
|
|
7
|
+
priceImpactThresholdReached: boolean;
|
|
8
|
+
route: RouteResponse;
|
|
9
|
+
};
|
|
10
|
+
export declare const SwapDetails: ({ amountIn, amountOut, destinationAsset, destinationChain, gasRequired, priceImpactPercent, priceImpactThresholdReached, route, sourceAsset, sourceChain, sourceFeeAsset, }: Props) => import("react/jsx-runtime").JSX.Element | null;
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { RouteResponse } from '@skip-router/core';
|
|
2
|
+
export type ActionType = 'NONE' | 'TRANSFER' | 'SWAP';
|
|
3
|
+
interface Props {
|
|
4
|
+
isLoading?: boolean;
|
|
5
|
+
route?: RouteResponse;
|
|
6
|
+
isAmountError?: boolean | string;
|
|
7
|
+
shouldShowPriceImpactWarning?: boolean;
|
|
8
|
+
routeWarningMessage?: string;
|
|
9
|
+
routeWarningTitle?: string;
|
|
10
|
+
onAllTransactionComplete?: () => void;
|
|
11
|
+
}
|
|
12
|
+
declare function TransactionDialog({ isLoading, route, isAmountError, shouldShowPriceImpactWarning, routeWarningMessage, routeWarningTitle, }: Props): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export default TransactionDialog;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { Args } from '../hooks/use-usd-value';
|
|
3
|
+
type UsdValueProps = Args & {
|
|
4
|
+
error?: ReactNode;
|
|
5
|
+
loading?: ReactNode;
|
|
6
|
+
context?: 'src' | 'dest';
|
|
7
|
+
};
|
|
8
|
+
export declare const UsdValue: ({ error, loading, context, ...args }: UsdValueProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
type UsdDiffValueProps = {
|
|
10
|
+
src: Args;
|
|
11
|
+
dest: Args;
|
|
12
|
+
onLoading?: ReactNode;
|
|
13
|
+
onUndefined?: ReactNode;
|
|
14
|
+
children?: (args: {
|
|
15
|
+
isLoading: boolean;
|
|
16
|
+
percentage: number;
|
|
17
|
+
}) => ReactNode;
|
|
18
|
+
};
|
|
19
|
+
export declare const UsdDiffValue: (props: UsdDiffValueProps) => import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
export declare const UsdDiff: {
|
|
21
|
+
Provider: ({ children }: {
|
|
22
|
+
children: ReactNode;
|
|
23
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
24
|
+
Value: (props: Omit<UsdDiffValueProps, 'src' | 'dest'>) => import("react/jsx-runtime").JSX.Element;
|
|
25
|
+
};
|
|
26
|
+
export declare const useUsdDiffReset: () => () => void;
|
|
27
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ComponentProps } from 'react';
|
|
2
|
+
export declare function useTotalWallets(): number;
|
|
3
|
+
type Props = ComponentProps<'div'> & {
|
|
4
|
+
chainType: string;
|
|
5
|
+
walletName: string;
|
|
6
|
+
};
|
|
7
|
+
export declare const WalletListItem: ({ children, chainType, walletName, ...props }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { MinimalWallet } from '../../hooks/use-make-wallets';
|
|
2
|
+
interface Props {
|
|
3
|
+
chainType: string;
|
|
4
|
+
wallets: MinimalWallet[];
|
|
5
|
+
onClose: () => void;
|
|
6
|
+
chainID: string;
|
|
7
|
+
}
|
|
8
|
+
export declare function WalletModal({ chainType, onClose, wallets }: Props): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
declare function WalletModalWithContext(): import("react/jsx-runtime").JSX.Element | null;
|
|
10
|
+
export default WalletModalWithContext;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
interface WalletModalContext {
|
|
3
|
+
chainID: string;
|
|
4
|
+
isOpen: boolean;
|
|
5
|
+
setIsOpen: (isOpen: boolean) => void;
|
|
6
|
+
openWalletModal: (chainID: string) => void;
|
|
7
|
+
}
|
|
8
|
+
declare const WalletModalContext: import("react").Context<WalletModalContext | undefined>;
|
|
9
|
+
export declare function useWalletModal(): WalletModalContext;
|
|
10
|
+
export declare function WalletModalProvider({ children }: {
|
|
11
|
+
children: ReactNode;
|
|
12
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const SwapWidgetUI: ({ className, ...divProps }: React.HTMLAttributes<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { SkipAPIProviderProps } from '../provider';
|
|
3
|
+
interface SwapWidgetProps extends Omit<SkipAPIProviderProps, 'children'>, Pick<React.HTMLAttributes<HTMLDivElement>, 'className' | 'style'> {
|
|
4
|
+
colors?: {
|
|
5
|
+
primary?: string;
|
|
6
|
+
};
|
|
7
|
+
}
|
|
8
|
+
export declare const SwapWidget: React.FC<SwapWidgetProps>;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { FeeAsset } from '@skip-router/core';
|
|
2
|
+
import { GasPrice } from '@cosmjs/stargate';
|
|
3
|
+
/**
|
|
4
|
+
* - deprio denoms start with 'ibc/' and 'factory/'
|
|
5
|
+
* - prio denoms start with 'u' or 'uu'
|
|
6
|
+
*/
|
|
7
|
+
export declare function sortFeeAssets(a: FeeAsset, b: FeeAsset): 1 | -1 | 0;
|
|
8
|
+
export declare const getChainFeeAssets: (chainID: string) => FeeAsset[];
|
|
9
|
+
export declare const getChainGasPrice: (chainID: string) => GasPrice | null;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { CosmWasmClient } from '@cosmjs/cosmwasm-stargate';
|
|
2
|
+
import { StargateClient } from '@cosmjs/stargate';
|
|
3
|
+
export declare function getStargateClientForChainID(chainID: string, rpcURL: string): Promise<StargateClient>;
|
|
4
|
+
export declare function getCosmWasmClientForChainID(chainID: string, rpcURL: string): Promise<CosmWasmClient>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function isUserRejectedRequestError(input: unknown): input is Error;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export declare function formatMaxFraction(amount: string | number, fraction?: number): string;
|
|
2
|
+
export declare function formatPercent(amount: string | number): string;
|
|
3
|
+
export declare function formatShortDate(date: string | Date): string;
|
|
4
|
+
export declare function formatUSD(amount: string | number): string;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export declare function formatNumberWithCommas(str: string | number): string;
|
|
2
|
+
export declare function formatNumberWithoutCommas(str: string | number): string;
|
|
3
|
+
export declare function getAmountWei(amount?: string, decimals?: number): string;
|
|
4
|
+
export declare function parseAmountWei(amount?: string, decimals?: number): string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function randomId(length?: number): string;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ChainWalletBase } from '@cosmos-kit/core';
|
|
2
|
+
import { MergedWalletClient } from '../lib/cosmos-kit';
|
|
3
|
+
export declare function gracefullyConnect(wallet: ChainWalletBase, { onAddChainError, }?: {
|
|
4
|
+
onAddChainError?: (err: unknown) => void | Promise<void>;
|
|
5
|
+
}): Promise<void>;
|
|
6
|
+
export declare function isWalletClientUsingLedger<T extends MergedWalletClient>(walletClient: T, chainID: string): Promise<boolean>;
|
|
7
|
+
export declare function isReadyToCheckLedger<T extends MergedWalletClient>(walletClient: T): boolean;
|
package/package.json
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@skip-go/widget",
|
|
3
|
+
"description": "Swap widget",
|
|
4
|
+
"version": "0.0.1-alpha.0",
|
|
5
|
+
"repository": "https://github.com/skip-mev/widget",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"exports": {
|
|
8
|
+
"import": "./build/index.es.js",
|
|
9
|
+
"types": "./build/index.d.ts"
|
|
10
|
+
},
|
|
11
|
+
"types": "./build/index.d.ts",
|
|
12
|
+
"engines": {
|
|
13
|
+
"node": ">=12.4"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"build",
|
|
17
|
+
"README.md"
|
|
18
|
+
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"start": "rollup --config rollup.config.js -w",
|
|
21
|
+
"dev": "rollup --config rollup.config.js -w",
|
|
22
|
+
"build": "rollup --config rollup.config.js",
|
|
23
|
+
"lint": "eslint src --ext .ts",
|
|
24
|
+
"chains:generate": "tsx ./src/scripts/codegen.ts"
|
|
25
|
+
},
|
|
26
|
+
"peerDependencies": {
|
|
27
|
+
"@cosmos-kit/cosmostation-extension": "^2.7.10",
|
|
28
|
+
"@cosmos-kit/keplr-extension": "^2.7.9",
|
|
29
|
+
"@cosmos-kit/leap-extension": "^2.7.10",
|
|
30
|
+
"@cosmos-kit/okxwallet": "2.4.x",
|
|
31
|
+
"@cosmos-kit/react": "2.10.x",
|
|
32
|
+
"@cosmos-kit/station": "2.5.x",
|
|
33
|
+
"@cosmos-kit/vectis": "2.6.x",
|
|
34
|
+
"@graz-sh/types": "0.0.14",
|
|
35
|
+
"@tanstack/react-query": ">=5.0.0",
|
|
36
|
+
"react": "17.x || 18.x",
|
|
37
|
+
"react-dom": "17.x || 18.x",
|
|
38
|
+
"viem": "2.x",
|
|
39
|
+
"wagmi": "2.x"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@types/node": "18.7.18",
|
|
43
|
+
"@types/qrcode": "^1.4.2",
|
|
44
|
+
"@types/react": "^18.0.6",
|
|
45
|
+
"@types/react-dom": "^18.0.2",
|
|
46
|
+
"@types/styled-components": "^5.1.25",
|
|
47
|
+
"autoprefixer": "^10.4.19",
|
|
48
|
+
"postcss": "^8.4.38",
|
|
49
|
+
"tailwindcss": "^3.4.3",
|
|
50
|
+
"tailwindcss-animate": "^1.0.7",
|
|
51
|
+
"typed-query-selector": "^2.11.2",
|
|
52
|
+
"typescript": "^5.0.4"
|
|
53
|
+
},
|
|
54
|
+
"resolutions": {
|
|
55
|
+
"@cosmos-kit/cosmostation-extension": "^2.7.10",
|
|
56
|
+
"@cosmos-kit/keplr-extension": "^2.7.9",
|
|
57
|
+
"@cosmos-kit/leap-extension": "^2.7.10",
|
|
58
|
+
"@cosmos-kit/okxwallet": "2.4.x",
|
|
59
|
+
"@cosmos-kit/react": "2.10.x",
|
|
60
|
+
"@cosmos-kit/station": "2.5.x",
|
|
61
|
+
"@cosmos-kit/vectis": "2.6.x",
|
|
62
|
+
"react": "^18.0.0",
|
|
63
|
+
"react-dom": "^18.0.0",
|
|
64
|
+
"viem": "^2.7.16",
|
|
65
|
+
"wagmi": "^2.5.7",
|
|
66
|
+
"@graz-sh/types": "0.0.14"
|
|
67
|
+
},
|
|
68
|
+
"dependencies": {
|
|
69
|
+
"@emotion/css": "^11.11.2",
|
|
70
|
+
"@heroicons/react": "^2.1.3",
|
|
71
|
+
"@interchain-ui/react": "^1.23.13",
|
|
72
|
+
"@radix-ui/colors": "^3.0.0",
|
|
73
|
+
"@radix-ui/react-accordion": "^1.1.2",
|
|
74
|
+
"@radix-ui/react-collapsible": "^1.0.3",
|
|
75
|
+
"@radix-ui/react-dialog": "^1.0.5",
|
|
76
|
+
"@radix-ui/react-scroll-area": "^1.0.5",
|
|
77
|
+
"@radix-ui/react-switch": "^1.0.3",
|
|
78
|
+
"@radix-ui/react-tooltip": "^1.0.7",
|
|
79
|
+
"@skip-router/core": "^5.0.1",
|
|
80
|
+
"@solana/spl-token": "^0.4.6",
|
|
81
|
+
"@solana/wallet-adapter-react": "^0.15.35",
|
|
82
|
+
"@solana/wallet-adapter-wallets": "^0.19.32",
|
|
83
|
+
"@solana/web3.js": "^1.91.8",
|
|
84
|
+
"@tailwindcss/forms": "^0.5.7",
|
|
85
|
+
"@tanstack/react-query": "^5.18.1",
|
|
86
|
+
"clsx": "^2.1.1",
|
|
87
|
+
"match-sorter": "^6.3.4",
|
|
88
|
+
"react-hot-toast": "^2.4.1",
|
|
89
|
+
"react-icons": "^5.2.1",
|
|
90
|
+
"tailwind-merge": "^2.3.0",
|
|
91
|
+
"zustand": "^4.5.2"
|
|
92
|
+
},
|
|
93
|
+
"publishConfig": {
|
|
94
|
+
"access": "public"
|
|
95
|
+
}
|
|
96
|
+
}
|