@accrupay/node
Version:
SDK client for AccruPay Merchant API
119 lines (118 loc) • 3.2 kB
JSON
{
"name": "@accrupay/node",
"private": false,
"version": "0.13.1",
"description": "SDK client for AccruPay Merchant API",
"license": "MIT",
"author": "Luiz Felipe Laviola <luiz@laviola.dev>",
"homepage": "https://accru.co",
"repository": {
"type": "git",
"url": "git+https://github.com/accruteam/sdk-accrupay-node"
},
"bugs": {
"url": "https://github.com/accruteam/sdk-accrupay-node/issues"
},
"keywords": [
"accru",
"accrupay",
"payment",
"node",
"graphql",
"nuvei"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs"
},
"node": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs",
"import": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"start": "./scripts/run.sh",
"test": "vitest -c ./test/vitest.config.ts run",
"lint": "run-p -c lint:*",
"lint:eslint": "eslint 'src/**/*.{ts,tsx}' --fix",
"lint:tsc": "tsc --noEmit",
"codegen": "graphql-codegen",
"codegen:update": "graphql-codegen && yalc publish",
"codegen:watch": "graphql-codegen -w",
"release": "npm run build && changeset publish",
"prepare": "husky"
},
"dependencies": {
"@apollo/client": "^3.13.8",
"apollo-link-scalars": "^4.0.3",
"graphql": "^16.11.0",
"graphql-scalars": "^1.24.2"
},
"devDependencies": {
"@changesets/cli": "^2.29.4",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@graphql-codegen/cli": "^5.0.6",
"@graphql-codegen/client-preset": "^4.8.1",
"@graphql-codegen/introspection": "^4.0.3",
"@graphql-codegen/schema-ast": "^4.1.0",
"@graphql-codegen/typescript": "^4.1.6",
"@graphql-codegen/typescript-operations": "^4.6.1",
"@graphql-typed-document-node/core": "^3.2.0",
"@parcel/watcher": "^2.5.1",
"@types/node": "^22.15.24",
"@typescript-eslint/eslint-plugin": "^8.33.0",
"@typescript-eslint/parser": "^8.33.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.5.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.4.0",
"husky": "^9.1.6",
"lint-staged": "^16.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"slackify-markdown": "^4.4.0",
"tsup": "^8.5.0",
"typescript": "5.8.3",
"vite-tsconfig-paths": "^5.1.0",
"vitest": "^3.1.4"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint 'src/**/*.{ts,tsx}' --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}