{
    "name": "@theorchard/connector-s3-upload-token",
    "version": "2.1.0",
    "description": "A DataSource connector for getting temporary token to upload a file to an s3 bucket",
    "main": "dist/cjs/src/index.js",
    "module": "dist/esm/src/index.js",
    "types": "dist/esm/src/index.d.ts",
    "author": "The Orchard",
    "publishConfig": {
        "registry": "https://npm.pkg.github.com"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/theorchard/orchard-suite.git"
    },
    "prettier": "@theorchard/prettier-config",
    "eslintConfig": {
        "extends": "@theorchard/ts-prettier"
    },
    "engines": {
        "node": ">=20"
    },
    "scripts": {
        "build:cjs": "tsc --build ./tsconfig.cjs.json",
        "build:esm": "tsc --build ./tsconfig.esm.json",
        "build": "pnpm run build:esm && pnpm run build:cjs",
        "clean": "rm -rf dist && rm -rf .cache",
        "format": "prettier --write .",
        "format:check": "prettier --check .",
        "test:unit": "jest",
        "lint": "eslint --ext .js,.ts,.tsx,.jsx --cache --cache-location .cache/.eslintcache src",
        "test": "pnpm lint && pnpm test:unit"
    },
    "dependencies": {
        "@aws-sdk/client-sts": "3.1000.0"
    },
    "files": [
        "dist"
    ],
    "devDependencies": {
        "@aws-sdk/types": "^3.973.4"
    }
}
