smartfile/package.json

79 lines
2.0 KiB
JSON
Raw Permalink Normal View History

2015-11-03 18:57:29 +00:00
{
2023-07-10 00:55:52 +00:00
"name": "@push.rocks/smartfile",
"private": false,
2024-04-12 12:44:13 +00:00
"version": "11.0.11",
2024-04-02 19:37:31 +00:00
"description": "provides a robust suite of tools for managing files in Node.js using TypeScript.",
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": {
"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-04-02 19:37:31 +00:00
"files management",
"TypeScript",
"Node.js",
"read files",
"write files",
"copy files",
"file streaming",
"directories manipulation",
"virtual file system",
"filesystem utilities",
"ESM syntax",
"memory-efficient streaming"
2015-11-03 18:57:29 +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": {
2023-11-24 18:15:41 +00:00
"@push.rocks/lik": "^6.0.12",
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",
2023-08-31 16:45:23 +00:00
"@push.rocks/smartjson": "^5.0.10",
2023-07-12 08:00:40 +00:00
"@push.rocks/smartmime": "^1.0.5",
2023-08-31 16:45:23 +00:00
"@push.rocks/smartpath": "^5.0.11",
2023-07-12 08:00:40 +00:00
"@push.rocks/smartpromise": "^4.0.2",
2023-11-24 18:15:41 +00:00
"@push.rocks/smartrequest": "^2.0.21",
"@push.rocks/smartstream": "^3.0.30",
"@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",
2023-06-23 16:08:15 +00:00
"fs-extra": "^11.1.1",
2023-11-04 19:07:43 +00:00
"glob": "^10.3.10",
2021-11-30 15:34:35 +00:00
"js-yaml": "^4.1.0"
2015-11-03 18:57:29 +00:00
},
"devDependencies": {
2023-08-31 16:45:23 +00:00
"@git.zone/tsbuild": "^2.1.70",
"@git.zone/tsrun": "^1.2.46",
2023-11-24 18:15:41 +00:00
"@git.zone/tstest": "^1.0.84",
2023-08-31 16:45:23 +00:00
"@push.rocks/tapbundle": "^5.0.15",
2023-11-24 18:15:41 +00:00
"@types/node": "^20.10.0"
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"
],
"browserslist": [
"last 1 chrome versions"
2019-06-26 19:17:58 +00:00
]
2024-04-02 19:37:32 +00:00
}