@firesystem/s3
Version:
AWS S3 implementation of Virtual File System
92 lines • 2.04 kB
JSON
{
"name": "@firesystem/s3",
"version": "1.0.3",
"description": "AWS S3 implementation of Virtual File System",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./provider": {
"types": "./dist/provider.d.ts",
"import": "./dist/provider.js",
"require": "./dist/provider.cjs"
}
},
"files": [
"dist",
"src",
"provider.ts",
"README.md"
],
"keywords": [
"vfs",
"s3",
"aws",
"virtual-file-system",
"cloud-storage",
"firesystem",
"filesystem",
"s3-storage",
"aws-s3"
],
"author": "Anderson D. Rosa",
"license": "MIT",
"homepage": "https://github.com/andersondrosa/firesystem/tree/main/packages/s3",
"repository": {
"type": "git",
"url": "https://github.com/andersondrosa/firesystem.git",
"directory": "packages/s3"
},
"bugs": {
"url": "https://github.com/andersondrosa/firesystem/issues"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.540.0",
"@firesystem/core": "1.1.1"
},
"devDependencies": {
"@workspace-fs/core": "^1.0.8",
"@types/node": "^20.10.5",
"aws-sdk-client-mock": "^4.0.0",
"eslint": "^8.57.1",
"fake-indexeddb": "^6.0.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.1.0",
"@firesystem/test-suite": "0.1.0"
},
"tsup": {
"entry": [
"src/index.ts",
"provider.ts"
],
"format": [
"cjs",
"esm"
],
"dts": true,
"sourcemap": true,
"clean": true,
"tsconfig": "./tsconfig.build.json"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest --run",
"test:watch": "vitest",
"lint": "eslint src",
"typecheck": "tsc --noEmit -p tsconfig.typecheck.json"
}
}