smartbucket/package.json

76 lines
2.0 KiB
JSON
Raw Permalink Normal View History

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