@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.
Files changed (2) hide show
  1. package/README.md +7 -0
  2. package/package.json +7 -2
package/README.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Sipay Node.js SDK
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/@muhammedaksam/sipay-node.svg)](https://www.npmjs.com/package/@muhammedaksam/sipay-node)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
+ [![TypeScript](https://img.shields.io/badge/TypeScript-Ready-blue.svg)](https://www.typescriptlang.org/)
6
+ [![CI](https://github.com/muhammedaksam/sipay-node/workflows/CI/badge.svg)](https://github.com/muhammedaksam/sipay-node/actions)
7
+ [![codecov](https://codecov.io/gh/muhammedaksam/sipay-node/branch/main/graph/badge.svg)](https://codecov.io/gh/muhammedaksam/sipay-node)
8
+ [![Node.js](https://img.shields.io/badge/Node.js-18%2B-green.svg)](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.0",
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
  }