UNPKG

s3-cli-js

Version:

A TypeScript-based npm package that replaces AWS CLI for S3 operations using presigned URLs

57 lines (56 loc) 1.31 kB
{ "name": "s3-cli-js", "version": "1.0.2", "description": "A TypeScript-based npm package that replaces AWS CLI for S3 operations using presigned URLs", "main": "dist/index.js", "bin": { "s3-cli": "dist/cli.js" }, "scripts": { "build": "tsc", "dev": "tsc --watch", "start": "node dist/cli.js", "s3-cli": "node dist/cli.js", "test": "jest", "lint": "eslint src/**/*.ts", "prepare": "npm run build" }, "keywords": [ "aws", "s3", "cli", "typescript", "presigned-url" ], "author": "", "license": "MIT", "engines": { "node": ">=18.0.0" }, "homepage": "https://github.com/dowands/s3-cli", "dependencies": { "@aws-sdk/client-s3": "^3.0.0", "@aws-sdk/s3-request-presigner": "^3.0.0", "commander": "^11.0.0", "axios": "^1.6.0", "chalk": "^4.1.2", "progress": "^2.0.3", "mime-types": "^2.1.35" }, "devDependencies": { "@types/node": "^20.0.0", "@types/progress": "^2.0.5", "@types/mime-types": "^2.1.4", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.0.0", "jest": "^29.0.0", "@types/jest": "^29.0.0", "ts-jest": "^29.0.0", "typescript": "^5.0.0" }, "files": [ "dist/**/*", "README.md" ] }