UNPKG

@muhammedaksam/sipay-node

Version:

Node.js TypeScript SDK for Sipay payment gateway

84 lines 2.58 kB
{ "name": "@muhammedaksam/sipay-node", "version": "1.1.13", "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.39.2", "@types/jest": "^30.0.0", "@types/node": "^25.0.9", "@typescript-eslint/eslint-plugin": "^8.53.0", "@typescript-eslint/parser": "^8.53.0", "eslint": "^9.39.2", "jest": "^30.2.0", "prettier": "^3.8.0", "rimraf": "^6.1.2", "ts-jest": "^29.4.6", "ts-node": "^10.9.2", "tsx": "^4.21.0", "typescript": "^5.9.3" }, "dependencies": { "axios": "^1.13.2" }, "engines": { "node": ">=18", "pnpm": "^10.23.0" }, "publishConfig": { "access": "public", "provenance": true }, "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", "test:integration": "npx tsx test/integration/test-runner.ts", "test:final": "npx tsx examples/final-payment-test.ts", "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" } }