smartbucket/package.json

76 lines
2.0 KiB
JSON
Raw Normal View History

2018-03-30 19:42:14 +02:00
{
2023-07-10 02:42:17 +02:00
"name": "@push.rocks/smartbucket",
2024-11-24 20:12:21 +01:00
"version": "3.3.3",
"description": "A TypeScript library providing a cloud-agnostic interface for managing object storage with functionalities like bucket management, file and directory operations, and advanced features such as metadata handling and file locking.",
2020-05-17 15:57:12 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-31 01:45:46 +02:00
"type": "module",
2018-03-30 19:42:14 +02:00
"author": "Lossless GmbH",
2018-09-14 18:07:20 +02:00
"license": "UNLICENSED",
2018-03-30 19:42:14 +02:00
"scripts": {
2019-10-16 19:15:48 +02:00
"test": "(tstest test/)",
2022-06-07 17:15:36 +02:00
"build": "(tsbuild --web --allowimplicitany)"
2018-03-30 19:42:14 +02:00
},
2018-03-30 19:42:23 +02:00
"devDependencies": {
"@git.zone/tsbuild": "^2.1.84",
"@git.zone/tsrun": "^1.2.49",
2024-05-17 18:53:11 +02:00
"@git.zone/tstest": "^1.0.90",
"@push.rocks/qenv": "^6.1.0",
"@push.rocks/tapbundle": "^5.5.3"
2018-03-30 19:42:14 +02:00
},
2018-09-14 18:07:20 +02:00
"dependencies": {
"@aws-sdk/client-s3": "^3.699.0",
"@push.rocks/smartmime": "^2.0.4",
2024-05-17 18:53:11 +02:00
"@push.rocks/smartpath": "^5.0.18",
"@push.rocks/smartpromise": "^4.0.4",
2023-11-03 01:36:11 +01:00
"@push.rocks/smartrx": "^3.0.7",
"@push.rocks/smartstream": "^3.2.5",
2024-06-10 16:47:20 +02:00
"@push.rocks/smartstring": "^4.0.15",
2024-06-03 21:35:08 +02:00
"@push.rocks/smartunique": "^3.0.9",
"@tsclass/tsclass": "^4.1.2"
2018-09-14 18:07:20 +02:00
},
2019-10-16 15:21:02 +02:00
"private": false,
2019-07-07 10:48:24 +02:00
"files": [
2019-10-14 20:55:25 +02:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-05-17 15:57:12 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2019-10-14 20:55:25 +02:00
"dist_ts_web/**/*",
"assets/**/*",
2019-07-07 10:48:24 +02:00
"cli.js",
"npmextra.json",
"readme.md"
2020-10-12 00:37:50 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-04-14 17:22:27 +02:00
],
"keywords": [
2024-05-27 17:34:26 +02:00
"TypeScript",
"cloud agnostic",
2024-04-14 17:22:27 +02:00
"object storage",
"bucket management",
"file operations",
2024-05-17 19:24:52 +02:00
"directory management",
"data streaming",
2024-05-27 17:34:26 +02:00
"S3",
"multi-cloud",
2024-05-27 17:34:26 +02:00
"file locking",
"metadata management",
2024-05-17 19:24:52 +02:00
"buffer handling",
"access control",
"environment configuration",
"unified storage",
"bucket policies",
"trash management",
"file transfer",
"data management",
"streaming"
2024-05-29 14:11:54 +02:00
],
"homepage": "https://code.foss.global/push.rocks/smartbucket",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartbucket.git"
}
2024-11-24 20:12:21 +01:00
}