74 lines
1.8 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-10-16 10:27:27 +02:00
"version": "3.0.23",
2024-05-27 17:34:26 +02:00
"description": "A TypeScript library offering simple and cloud-agnostic object storage with advanced features like bucket creation, file and directory management, and data streaming.",
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.0.5",
"@push.rocks/tapbundle": "^5.3.0"
2018-03-30 19:42:14 +02:00
},
2018-09-14 18:07:20 +02:00
"dependencies": {
"@aws-sdk/client-s3": "^3.670.0",
2024-06-03 21:35:08 +02:00
"@push.rocks/smartmime": "^2.0.2",
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.4",
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",
2024-04-14 17:22:27 +02:00
"cloud storage",
"object storage",
2024-05-27 17:34:26 +02:00
"bucket creation",
2024-05-17 19:24:52 +02:00
"file management",
"directory management",
"data streaming",
"multi-cloud",
"API",
"unified storage",
2024-05-27 17:34:26 +02:00
"S3",
"minio",
"file locking",
"metadata",
2024-05-17 19:24:52 +02:00
"buffer handling",
"access key",
2024-05-21 18:46:59 +02:00
"secret key",
"cloud agnostic"
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-06-03 21:35:08 +02:00
}