@payconductor/react 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/README.md +8 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
- # @payconductor-sdk-web/library-react
1
+ # @payconductor/react
2
2
 
3
3
  React SDK for [PayConductor](https://payconductor.ai) payment integration.
4
4
 
5
- [![npm version](https://img.shields.io/npm/v/@payconductor-sdk-web/library-react.svg?style=flat-square)](https://www.npmjs.com/package/@payconductor-sdk-web/library-react)
5
+ [![npm version](https://img.shields.io/npm/v/@payconductor/react.svg?style=flat-square)](https://www.npmjs.com/package/@payconductor/react)
6
6
 
7
7
  ## Requirements
8
8
 
@@ -11,13 +11,13 @@ Minimum React version: **v16.8**.
11
11
  ## Installation
12
12
 
13
13
  ```bash
14
- npm install @payconductor-sdk-web/library-react payconductor-sdk
14
+ npm install @payconductor/react payconductor-sdk
15
15
  # or
16
- yarn add @payconductor-sdk-web/library-react payconductor-sdk
16
+ yarn add @payconductor/react payconductor-sdk
17
17
  # or
18
- pnpm add @payconductor-sdk-web/library-react payconductor-sdk
18
+ pnpm add @payconductor/react payconductor-sdk
19
19
  # or
20
- bun add @payconductor-sdk-web/library-react payconductor-sdk
20
+ bun add @payconductor/react payconductor-sdk
21
21
  ```
22
22
 
23
23
  ## Quick Start
@@ -30,7 +30,7 @@ import {
30
30
  usePayconductorElement,
31
31
  type PaymentMethod,
32
32
  type PaymentResult,
33
- } from '@payconductor-sdk-web/library-react';
33
+ } from '@payconductor/react';
34
34
  import {
35
35
  AvailablePaymentMethods,
36
36
  Configuration,
@@ -221,7 +221,7 @@ import type {
221
221
  PicPayPaymentData,
222
222
  CardPaymentData,
223
223
  BillingDetails,
224
- } from '@payconductor-sdk-web/library-react';
224
+ } from '@payconductor/react';
225
225
  ```
226
226
 
227
227
  ## Payment Flow
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@payconductor/react",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "React SDK for PayConductor",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs.js",