punch-library 0.1.2 → 0.1.4
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 +24 -2
- package/package.json +8 -1
package/README.md
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
# punch-
|
|
1
|
+
# punch-library
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
4
|
<picture>
|
|
5
5
|
<source srcset="https://raw.githubusercontent.com/oguzhan18/punch-library/refs/heads/main/docs/assets/punch-library.png" type="image/png" />
|
|
6
|
-
<img src="https://raw.githubusercontent.com/oguzhan18/punch-library/refs/heads/main/docs/assets/punch-library.
|
|
6
|
+
<img src="https://raw.githubusercontent.com/oguzhan18/punch-library/refs/heads/main/docs/assets/punch-library.png" alt="Punch Library logo" width="700" />
|
|
7
7
|
</picture>
|
|
8
8
|
</p>
|
|
9
9
|
|
|
@@ -11,6 +11,24 @@ Framework-agnostic payment orchestration library for Node.js with a `punch` CLI.
|
|
|
11
11
|
|
|
12
12
|
Documentation is powered by Docsify.
|
|
13
13
|
|
|
14
|
+
## Package
|
|
15
|
+
|
|
16
|
+
- npm: `https://www.npmjs.com/package/punch-library`
|
|
17
|
+
- GitHub: `https://github.com/oguzhan18/punch-library`
|
|
18
|
+
|
|
19
|
+
## Install
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
# npm
|
|
23
|
+
npm install punch-library
|
|
24
|
+
|
|
25
|
+
# yarn
|
|
26
|
+
yarn add punch-library
|
|
27
|
+
|
|
28
|
+
# pnpm
|
|
29
|
+
pnpm add punch-library
|
|
30
|
+
```
|
|
31
|
+
|
|
14
32
|
## Maintainer
|
|
15
33
|
|
|
16
34
|
- Name: Oguzhan Cart
|
|
@@ -77,6 +95,10 @@ npm run docs:serve
|
|
|
77
95
|
Then open:
|
|
78
96
|
- `http://localhost:3004`
|
|
79
97
|
|
|
98
|
+
## Vercel Deployment (Docsify)
|
|
99
|
+
|
|
100
|
+
Vercel is configured to deploy Docsify static docs (not NestJS runtime) via `vercel.json`.
|
|
101
|
+
|
|
80
102
|
## Library API
|
|
81
103
|
|
|
82
104
|
Instantiate the library:
|
package/package.json
CHANGED
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "punch-library",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Framework-agnostic payment orchestration library for Node.js with Punch CLI",
|
|
5
5
|
"author": "Oguzhan Cart <oguzhancart1@gmail.com> (https://oguzhancart.dev)",
|
|
6
6
|
"homepage": "https://oguzhancart.dev",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/oguzhan18/punch-library.git"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/oguzhan18/punch-library/issues"
|
|
13
|
+
},
|
|
7
14
|
"keywords": [
|
|
8
15
|
"payments",
|
|
9
16
|
"payment-gateway",
|