@zed-io/wam-payment-sdk
Version:
Official WAM Payment SDK for creating and signing payment links
82 lines (81 loc) • 2.13 kB
JSON
{
"name": "@zed-io/wam-payment-sdk",
"version": "1.0.10",
"description": "Official WAM Payment SDK for creating and signing payment links",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"build:types": "tsc --emitDeclarationOnly",
"dev": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"postpublish": "echo '✅ Package published successfully!'",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"pack:test": "npm pack --dry-run"
},
"keywords": [
"wam",
"payment",
"sdk",
"caribbean",
"fintech",
"payment-links",
"cryptography",
"hmac"
],
"author": "WAM Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zed-io/wam-payments-sdk.git"
},
"bugs": {
"url": "https://github.com/zed-io/wam-payments-sdk/issues"
},
"homepage": "https://github.com/zed-io/wam-payments-sdk#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.5",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"jest": "^29.7.0",
"rollup": "^4.3.0",
"rollup-plugin-dts": "^6.1.0",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"dependencies": {},
"peerDependencies": {
"node": ">=14.0.0"
},
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public"
}
}