@muhammedaksam/sipay-node
Version:
Node.js TypeScript SDK for Sipay payment gateway
77 lines • 2.35 kB
JSON
{
"name": "@muhammedaksam/sipay-node",
"version": "1.0.2",
"description": "Node.js TypeScript SDK for Sipay payment gateway",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/esm/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"keywords": [
"sipay",
"payment",
"gateway",
"credit-card",
"turkey",
"typescript",
"nodejs"
],
"author": "Muhammed Mustafa AKŞAM <info@muhammedaksam.com.tr> (https://github.com/muhammedaksam)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/muhammedaksam/sipay-node.git"
},
"bugs": {
"url": "https://github.com/muhammedaksam/sipay-node/issues"
},
"homepage": "https://github.com/muhammedaksam/sipay-node#readme",
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.13",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"eslint": "^9.30.1",
"jest": "^30.0.4",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"dependencies": {
"axios": "^1.10.0"
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "pnpm run build:cjs && pnpm run build:esm && pnpm run build:types",
"build:cjs": "tsc -p tsconfig.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:types": "tsc -p tsconfig.types.json",
"dev": "ts-node src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src test examples --ext .ts",
"lint:fix": "eslint src test examples --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\" \"examples/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\" \"examples/**/*.ts\"",
"clean": "rimraf dist",
"check-all": "pnpm run lint && pnpm run format:check && pnpm run test",
"version:show": "npx tsx scripts/version-helper.ts show",
"version:update": "npx tsx scripts/version-helper.ts update",
"version:bump": "npx tsx scripts/version-helper.ts update"
}
}