smartbucket/package.json

60 lines
1.4 KiB
JSON
Raw Normal View History

2018-03-30 17:42:14 +00:00
{
2023-07-10 00:42:17 +00:00
"name": "@push.rocks/smartbucket",
2024-05-17 17:09:00 +00:00
"version": "3.0.1",
2024-04-14 15:22:27 +00:00
"description": "A TypeScript library for simple cloud independent object storage with support for buckets, directories, and files.",
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",
2018-03-30 17:42:14 +00:00
"author": "Lossless GmbH",
2018-09-14 16:07:20 +00:00
"license": "UNLICENSED",
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": {
2024-05-17 16:53:11 +00:00
"@git.zone/tsbuild": "^2.1.76",
2024-02-10 03:36:34 +00:00
"@git.zone/tsrun": "^1.2.46",
2024-05-17 16:53:11 +00:00
"@git.zone/tstest": "^1.0.90",
"@push.rocks/qenv": "^6.0.5",
"@push.rocks/tapbundle": "^5.0.23"
2018-03-30 17:42:14 +00:00
},
2018-09-14 16:07:20 +00:00
"dependencies": {
2024-05-17 16:53:11 +00:00
"@push.rocks/smartpath": "^5.0.18",
2023-11-03 00:36:11 +00:00
"@push.rocks/smartpromise": "^4.0.3",
"@push.rocks/smartrx": "^3.0.7",
2024-05-17 16:53:11 +00:00
"@push.rocks/smartstream": "^3.0.37",
"@tsclass/tsclass": "^4.0.54",
"minio": "^8.0.0"
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": [
"cloud storage",
"object storage",
"minio",
"S3",
"TypeScript",
"smartstream",
"smartpromise",
"smartpath",
"smartrx",
"buckets",
"files management",
"directories management"
2019-07-07 08:48:24 +00:00
]
2024-05-05 17:52:51 +00:00
}