2015-11-03 19:57:29 +01:00
{
2023-07-10 02:55:52 +02:00
"name" : "@push.rocks/smartfile" ,
2018-07-03 08:55:09 +02:00
"private" : false ,
2025-01-07 04:30:39 +01:00
"version" : "11.1.1" ,
2024-05-17 17:49:57 +02: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 15:43:28 +02:00
"type" : "module" ,
2015-11-03 19:57:29 +01:00
"scripts" : {
2018-08-06 00:38:02 +02:00
"test" : "(tstest test/)" ,
2022-07-24 23:11:41 +02:00
"build" : "(tsbuild --web --allowimplicitany)" ,
"buildDocs" : "tsdoc"
2015-11-03 19:57:29 +01:00
} ,
"repository" : {
"type" : "git" ,
2024-05-29 14:13:08 +02:00
"url" : "https://code.foss.global/push.rocks/smartfile.git"
2015-11-03 19:57:29 +01:00
} ,
"keywords" : [
2024-05-17 17:49:57 +02:00
"file management" ,
2024-04-02 21:37:31 +02:00
"TypeScript" ,
"Node.js" ,
2024-04-14 17:35:54 +02:00
"file operations" ,
"file manipulation" ,
2024-04-02 21:37:31 +02:00
"file streaming" ,
2024-04-14 17:35:54 +02:00
"virtual directory" ,
2024-04-02 21:37:31 +02:00
"filesystem utilities" ,
2024-04-14 17:35:54 +02:00
"memory-efficient file handling" ,
2024-05-17 17:49:57 +02:00
"custom file operations" ,
"write files" ,
"read files" ,
"copy files" ,
"delete files" ,
"list directories" ,
"handle large files" ,
"virtual filesystems" ,
"buffer operations"
2015-11-03 19:57:29 +01:00
] ,
2020-08-10 20:58:22 +00:00
"author" : "Lossless GmbH <hello@lossless.com> (https://lossless.com)" ,
2015-11-03 19:57:29 +01:00
"license" : "MIT" ,
"bugs" : {
2023-10-12 02:21:39 +02:00
"url" : "https://gitlab.com/push.rocks/smartfile/issues"
2015-11-03 19:57:29 +01:00
} ,
2024-05-29 14:13:08 +02:00
"homepage" : "https://code.foss.global/push.rocks/smartfile" ,
2015-11-03 19:57:29 +01:00
"dependencies" : {
2024-12-15 21:40:19 +01:00
"@push.rocks/lik" : "^6.1.0" ,
2023-08-31 18:45:23 +02:00
"@push.rocks/smartdelay" : "^3.0.5" ,
2023-07-12 10:00:40 +02:00
"@push.rocks/smartfile-interfaces" : "^1.0.7" ,
2023-09-22 17:05:35 +02:00
"@push.rocks/smarthash" : "^3.0.4" ,
2024-05-28 12:43:46 +02:00
"@push.rocks/smartjson" : "^5.0.20" ,
2024-12-15 21:40:19 +01:00
"@push.rocks/smartmime" : "^2.0.4" ,
2024-05-28 12:43:46 +02:00
"@push.rocks/smartpath" : "^5.0.18" ,
2025-01-07 04:30:39 +01:00
"@push.rocks/smartpromise" : "^4.1.0" ,
2024-12-15 21:40:19 +01:00
"@push.rocks/smartrequest" : "^2.0.23" ,
"@push.rocks/smartstream" : "^3.2.5" ,
2023-11-24 19:15:41 +01:00
"@types/fs-extra" : "^11.0.4" ,
2023-06-23 18:08:15 +02:00
"@types/glob" : "^8.1.0" ,
2023-11-24 19:15:41 +01:00
"@types/js-yaml" : "^4.0.9" ,
2024-04-12 14:51:23 +02:00
"fs-extra" : "^11.2.0" ,
2024-12-15 21:40:19 +01:00
"glob" : "^11.0.0" ,
2021-11-30 16:34:35 +01:00
"js-yaml" : "^4.1.0"
2015-11-03 19:57:29 +01:00
} ,
"devDependencies" : {
2024-12-15 21:40:19 +01:00
"@git.zone/tsbuild" : "^2.2.0" ,
"@git.zone/tsrun" : "^1.3.3" ,
2024-05-28 12:43:46 +02:00
"@git.zone/tstest" : "^1.0.90" ,
2025-01-07 04:30:39 +01:00
"@push.rocks/tapbundle" : "^5.5.4" ,
"@types/node" : "^22.10.5"
2019-06-26 21:17:58 +02: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 21:17:58 +02:00
"cli.js" ,
"npmextra.json" ,
"readme.md"
2020-08-10 20:58:22 +00:00
] ,
"browserslist" : [
"last 1 chrome versions"
2019-06-26 21:17:58 +02:00
]
2024-06-06 22:29:06 +02:00
}