UNPKG

@nomadfypg/nomadfy-sdk

Version:

Software Development Kit (SDK), written in TypeScript, in order to perform integrations with various existing payment gateways.

98 lines (97 loc) 3.39 kB
{ "name": "@nomadfypg/nomadfy-sdk", "version": "1.0.0", "description": "Software Development Kit (SDK), written in TypeScript, in order to perform integrations with various existing payment gateways.", "keywords": [ "payment", "sdk", "gateway", "nomadfy", "aws", "typescript", "library" ], "homepage": "https://github.com/lwglg/nomadfy-sdk#readme", "bugs": { "url": "https://github.com/lwglg/nomadfy-sdk/issues" }, "repository": { "type": "git", "url": "git+ssh://git@github.com/lwglg/nomadfy-sdk.git" }, "license": "MIT", "author": "Guilherme Lima Gonçalves <lwglguilherme@gmail.com>", "type": "commonjs", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist/**/*" ], "scripts": { "build": "tsup src/index.ts --tsconfig ./tsconfig.build.json", "build:validate": "tsc --project ./tsconfig.json --noEmit", "format": "prettier --write \"src/**/*.ts\"", "packages:check": "ncu", "packages:update": "ncu -u", "packages:install": "rm -rf node_modules && rm yarn.lock && yarn install", "prebuild": "rimraf dist", "project:madge": "madge --ts-config tsconfig.json src/index.ts", "project:tree-imports": "yarn run project:madge -- --image docs/img/svg/graph-tree-imports.svg", "project:tree-circular": "yarn run project:madge -- --circular --image docs/img/svg/graph-tree-circular-imports.svg", "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", "test": "jest --runInBand", "test:unit": "jest --runInBand --config ./jest.unit.config.ts", "test:int": "jest --config ./jest.int.config.ts", "test:watch": "jest --watch", "test:cov": "jest --coverage", "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", "test:e2e": "jest --config ./jest-e2e.json", "validate": "yarn format && yarn lint && yarn build:validate", "publish": "npm version patch --force && npm publish --access public" }, "dependencies": { "@aws-sdk/client-secrets-manager": "^3.741.0", "@aws-sdk/types": "^3.734.0", "api": "^6.1.2", "axios": "^1.7.9", "crypto": "^1.0.1", "json-schema-to-ts": "^3.1.1", "mercadopago": "^2.2.0", "oas": "^25.3.0" }, "devDependencies": { "@eslint/compat": "^1.2.5", "@eslint/eslintrc": "^3.2.0", "@eslint/js": "^9.18.0", "@eslint/migrate-config": "^1.3.6", "@swc/core": "^1.10.7", "@types/bcrypt": "^5.0.2", "@types/express": "^5.0.0", "@types/jest": "^29.5.14", "@types/jsonwebtoken": "^9.0.7", "@types/node": "^22.10.6", "@types/supertest": "^6.0.2", "@typescript-eslint/eslint-plugin": "^8.20.0", "@typescript-eslint/parser": "^8.20.0", "eslint": "^9.18.0", "eslint-config-prettier": "^10.0.1", "eslint-plugin-import": "^2.31.0", "eslint-plugin-prettier": "^5.2.2", "eslint-plugin-simple-import-sort": "^12.1.1", "git-commit-msg-linter": "^5.0.8", "globals": "^15.14.0", "jest": "^29.7.0", "madge": "^8.0.0", "npm-check-updates": "^17.1.13", "prettier": "^3.4.2", "rimraf": "^6.0.1", "source-map-support": "^0.5.21", "supertest": "^7.0.0", "ts-jest": "^29.2.5", "ts-loader": "^9.5.2", "ts-node": "^10.9.2", "tsconfig-paths": "^4.2.0", "tsup": "^8.3.5", "typescript": "^5.7.3" } }