UNPKG

do-spaces

Version:

Unofficial package for simple managing file operations hosted on "Digital Ocean Spaces" written in Typescript

81 lines (80 loc) 1.77 kB
{ "version": "1.3.0", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist", "src" ], "engines": { "node": ">=10" }, "scripts": { "start": "npx tsdx watch --onSuccess \"node ./dist/index.js\"", "customtest": "npx nodemon test/test.js", "build": "npx tsdx build --target node", "lint": "npx tsdx lint", "prepare": "npx tsdx build --target node", "np:publish": "git push origin master && np --no-tests --no-2fa", "size": "size-limit", "analyze": "size-limit --why" }, "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "prettier": { "printWidth": 80, "semi": true, "singleQuote": true, "trailingComma": "es5" }, "repository": { "type": "git", "url": "git+https://github.com/maielo/do-spaces.git" }, "bugs": { "url": "https://github.com/maielo/do-spaces/issues" }, "homepage": "https://github.com/maielo/do-spaces#readme", "name": "do-spaces", "author": "Maielo", "keywords": [ "digital-ocean", "digital-ocean-spaces", "ts", "typescript", "spaces", "promises", "async", "node" ], "module": "dist/do-spaces.esm.js", "size-limit": [ { "path": "dist/do-spaces.cjs.production.min.js", "limit": "10 KB" }, { "path": "dist/do-spaces.esm.js", "limit": "10 KB" } ], "devDependencies": { "@aws-sdk/types": "^3.821.0", "@size-limit/preset-small-lib": "^11.2.0", "@types/mime-types": "^3.0.1", "husky": "^9.1.7", "i": "^0.3.7", "nodemon": "^3.1.10", "size-limit": "^11.2.0", "tsdx": "^0.14.1", "tslib": "^2.8.1" }, "dependencies": { "aws-sdk": "^2.1692.0", "mime-types": "^3.0.1" } }