UNPKG

aws-sigv4-sign

Version:

SignatureV4 sign function implemented with the official AWS SDK

64 lines 1.4 kB
{ "name": "aws-sigv4-sign", "version": "1.2.1", "description": "SignatureV4 sign function implemented with the official AWS SDK", "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.js", "exports": { ".": { "require": "./dist/index.cjs", "import": "./dist/index.js" } }, "publishConfig": { "access": "public" }, "engines": { "node": ">=18" }, "files": [ "dist" ], "repository": { "type": "git", "url": "git+https://github.com/zirkelc/aws-sigv4.git", "directory": "packages/aws-sigv4-sign" }, "bugs": { "url": "https://github.com/zirkelc/aws-sigv4/issues" }, "homepage": "https://github.com/zirkelc/aws-sigv4/packages/aws-sigv4-sign#readme", "license": "MIT", "keywords": [ "aws", "aws-sdk", "aws-sigv4", "fetch", "http", "request", "sign", "signer", "signed", "signature", "sigv4", "signature-v4", "signaturev4" ], "dependencies": { "@aws-crypto/sha256-js": "^5.2.0", "@aws-sdk/credential-provider-node": "^3.609.0", "@smithy/protocol-http": "^4.0.3", "@smithy/signature-v4": "^3.1.2" }, "browser": { "@aws-sdk/credential-provider-node": false }, "devDependencies": { "@aws-sdk/types": "^3.609.0" }, "scripts": { "test": "vitest", "build": "tsup && pnpm pack | tail -n1 | xargs attw" } }