UNPKG

@synet/fs-digitalocean

Version:

DigitalOcean Spaces filesystem abstraction following FileSystem pattern

65 lines (64 loc) 1.89 kB
{ "name": "@synet/fs-digitalocean", "version": "1.0.0", "description": "DigitalOcean Spaces filesystem abstraction following FileSystem pattern", "main": "dist/index.js", "types": "dist/index.d.ts", "type": "commonjs", "exports": { ".": { "types": "./dist/index.d.ts", "require": "./dist/index.js", "default": "./dist/index.js" } }, "files": [ "dist" ], "repository": { "type": "git", "url": "git+https://github.com/synthetism/fs-digitalocean.git" }, "scripts": { "build": "tsc", "test": "vitest run", "dev:test": "vitest", "clean": "rimraf dist", "coverage": "vitest --coverage", "lint": "biome lint ./src", "check": "biome check ./src", "type-check": "tsc --noEmit --skipLibCheck", "format": "biome format --write ./src ./test", "prepublishOnly": "npm run clean && npm run test && npm run lint && npm run build", "version:dev": "npm version --no-git-tag-version prerelease --preid=dev", "version:patch": "npm version --no-git-tag-version patch", "version:minor": "npm version --no-git-tag-version minor", "version:major": "npm version --no-git-tag-version major", "publish:dev": "npm publish --registry=http://registry.dig.run/ --tag dev", "publish:prod": "npm publish --registry=https://registry.npmjs.org/" }, "devDependencies": { "@biomejs/biome": "^1.9.4", "@types/node": "^24.2.1", "@vitest/coverage-v8": "^3.2.4", "rimraf": "^6.0.1", "typescript": "^5.9.2", "vitest": "^3.2.4" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "keywords": [ "Filesystem", "DigitalOcean Spaces Storage", "Synthetism", "Patterns" ], "author": "Synet", "homepage": "https://synthetism.ai", "license": "MIT", "dependencies": { "@aws-sdk/client-s3": "^3.864.0" } }