@muhammedaksam/sipay-node 0.1.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.
- package/README.md +7 -0
- package/package.json +7 -2
package/README.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Sipay Node.js SDK
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@muhammedaksam/sipay-node)
|
|
4
|
+
[](https://opensource.org/licenses/MIT)
|
|
5
|
+
[](https://www.typescriptlang.org/)
|
|
6
|
+
[](https://github.com/muhammedaksam/sipay-node/actions)
|
|
7
|
+
[](https://codecov.io/gh/muhammedaksam/sipay-node)
|
|
8
|
+
[](https://nodejs.org/)
|
|
9
|
+
|
|
3
10
|
An unofficial Node.js TypeScript SDK for the Sipay payment gateway.
|
|
4
11
|
|
|
5
12
|
## Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@muhammedaksam/sipay-node",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Node.js TypeScript SDK for Sipay payment gateway",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
"rimraf": "^6.0.1",
|
|
47
47
|
"ts-jest": "^29.4.0",
|
|
48
48
|
"ts-node": "^10.9.2",
|
|
49
|
+
"tsx": "^4.20.3",
|
|
49
50
|
"typescript": "^5.8.3"
|
|
50
51
|
},
|
|
51
52
|
"dependencies": {
|
|
@@ -67,6 +68,10 @@
|
|
|
67
68
|
"lint:fix": "eslint src test examples --ext .ts --fix",
|
|
68
69
|
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"examples/**/*.ts\"",
|
|
69
70
|
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\" \"examples/**/*.ts\"",
|
|
70
|
-
"clean": "rimraf dist"
|
|
71
|
+
"clean": "rimraf dist",
|
|
72
|
+
"check-all": "pnpm run lint && pnpm run format:check && pnpm run test",
|
|
73
|
+
"version:show": "npx tsx scripts/version-helper.ts show",
|
|
74
|
+
"version:update": "npx tsx scripts/version-helper.ts update",
|
|
75
|
+
"version:bump": "npx tsx scripts/version-helper.ts update"
|
|
71
76
|
}
|
|
72
77
|
}
|