2015-11-03 18:57:29 +00:00
{
2023-07-10 00:55:52 +00:00
"name" : "@push.rocks/smartfile" ,
2018-07-03 06:55:09 +00:00
"private" : false ,
2024-05-28 10:43:47 +00:00
"version" : "11.0.16" ,
2024-05-17 15:49:57 +00:00
"description" : "Provides comprehensive tools for efficient file management in Node.js using TypeScript, including handling streams, virtual directories, and various file operations." ,
2020-03-15 19:08:41 +00:00
"main" : "dist_ts/index.js" ,
"typings" : "dist_ts/index.d.ts" ,
2022-06-07 13:43:28 +00:00
"type" : "module" ,
2015-11-03 18:57:29 +00:00
"scripts" : {
2018-08-05 22:38:02 +00:00
"test" : "(tstest test/)" ,
2022-07-24 21:11:41 +00:00
"build" : "(tsbuild --web --allowimplicitany)" ,
"buildDocs" : "tsdoc"
2015-11-03 18:57:29 +00:00
} ,
"repository" : {
"type" : "git" ,
2023-10-12 00:21:39 +00:00
"url" : "git+https://gitlab.com/push.rocks/smartfile.git"
2015-11-03 18:57:29 +00:00
} ,
"keywords" : [
2024-05-17 15:49:57 +00:00
"file management" ,
2024-04-02 19:37:31 +00:00
"TypeScript" ,
"Node.js" ,
2024-04-14 15:35:54 +00:00
"file operations" ,
"file manipulation" ,
2024-04-02 19:37:31 +00:00
"file streaming" ,
2024-04-14 15:35:54 +00:00
"virtual directory" ,
2024-04-02 19:37:31 +00:00
"filesystem utilities" ,
2024-04-14 15:35:54 +00:00
"memory-efficient file handling" ,
2024-05-17 15:49:57 +00:00
"custom file operations" ,
"write files" ,
"read files" ,
"copy files" ,
"delete files" ,
"list directories" ,
"handle large files" ,
"virtual filesystems" ,
"buffer operations"
2015-11-03 18:57:29 +00:00
] ,
2020-08-10 20:58:22 +00:00
"author" : "Lossless GmbH <hello@lossless.com> (https://lossless.com)" ,
2015-11-03 18:57:29 +00:00
"license" : "MIT" ,
"bugs" : {
2023-10-12 00:21:39 +00:00
"url" : "https://gitlab.com/push.rocks/smartfile/issues"
2015-11-03 18:57:29 +00:00
} ,
2023-10-12 00:21:39 +00:00
"homepage" : "https://gitlab.com/push.rocks/smartfile#readme" ,
2015-11-03 18:57:29 +00:00
"dependencies" : {
2024-05-28 10:43:46 +00:00
"@push.rocks/lik" : "^6.0.15" ,
2023-08-31 16:45:23 +00:00
"@push.rocks/smartdelay" : "^3.0.5" ,
2023-07-12 08:00:40 +00:00
"@push.rocks/smartfile-interfaces" : "^1.0.7" ,
2023-09-22 15:05:35 +00:00
"@push.rocks/smarthash" : "^3.0.4" ,
2024-05-28 10:43:46 +00:00
"@push.rocks/smartjson" : "^5.0.20" ,
"@push.rocks/smartmime" : "^2.0.2" ,
"@push.rocks/smartpath" : "^5.0.18" ,
2023-07-12 08:00:40 +00:00
"@push.rocks/smartpromise" : "^4.0.2" ,
2024-05-28 10:43:46 +00:00
"@push.rocks/smartrequest" : "^2.0.22" ,
"@push.rocks/smartstream" : "^3.0.38" ,
2023-11-24 18:15:41 +00:00
"@types/fs-extra" : "^11.0.4" ,
2023-06-23 16:08:15 +00:00
"@types/glob" : "^8.1.0" ,
2023-11-24 18:15:41 +00:00
"@types/js-yaml" : "^4.0.9" ,
2024-04-12 12:51:23 +00:00
"fs-extra" : "^11.2.0" ,
2024-05-28 10:43:46 +00:00
"glob" : "^10.4.1" ,
2021-11-30 15:34:35 +00:00
"js-yaml" : "^4.1.0"
2015-11-03 18:57:29 +00:00
} ,
"devDependencies" : {
2024-05-28 10:43:46 +00:00
"@git.zone/tsbuild" : "^2.1.80" ,
2023-08-31 16:45:23 +00:00
"@git.zone/tsrun" : "^1.2.46" ,
2024-05-28 10:43:46 +00:00
"@git.zone/tstest" : "^1.0.90" ,
"@push.rocks/tapbundle" : "^5.0.23" ,
"@types/node" : "^20.12.12"
2019-06-26 19:17:58 +00:00
} ,
"files" : [
2020-02-07 21:00:04 +00:00
"ts/**/*" ,
"ts_web/**/*" ,
"dist/**/*" ,
2020-03-15 18:58:46 +00:00
"dist_*/**/*" ,
"dist_ts/**/*" ,
2020-02-07 21:00:04 +00:00
"dist_ts_web/**/*" ,
"assets/**/*" ,
2019-06-26 19:17:58 +00:00
"cli.js" ,
"npmextra.json" ,
"readme.md"
2020-08-10 20:58:22 +00:00
] ,
"browserslist" : [
"last 1 chrome versions"
2019-06-26 19:17:58 +00:00
]
2024-05-17 15:49:57 +00:00
}