Files
smartarchive/package.json

78 lines
2.0 KiB
JSON
Raw Normal View History

2016-01-18 19:38:55 +01:00
{
2023-07-10 02:42:07 +02:00
"name": "@push.rocks/smartarchive",
2025-08-18 01:52:21 +00:00
"version": "4.2.1",
2024-04-14 17:20:20 +02:00
"description": "A library for working with archive files, providing utilities for compressing and decompressing data.",
2020-03-13 20:22:56 +00:00
"main": "dist_ts/index.js",
2020-03-16 14:38:17 +00:00
"typings": "dist_ts/index.d.ts",
2022-04-04 14:15:51 +02:00
"type": "module",
2016-01-18 19:38:55 +01:00
"scripts": {
"test": "(tstest test/ --verbose)",
2023-07-26 16:13:33 +02:00
"build": "tsbuild --web --allowimplicitany",
"buildDocs": "tsdoc"
2016-01-18 19:38:55 +01:00
},
"repository": {
"type": "git",
2024-05-29 14:11:45 +02:00
"url": "https://code.foss.global/push.rocks/smartarchive.git"
2016-01-18 19:38:55 +01:00
},
2017-03-12 22:16:48 +01:00
"author": "Lossless GmbH",
2016-01-18 19:38:55 +01:00
"license": "MIT",
"bugs": {
"url": "https://code.foss.global/push.rocks/smartarchive/issues"
2016-01-18 19:38:55 +01:00
},
"homepage": "https://code.foss.global/push.rocks/smartarchive#readme",
2016-01-18 19:38:55 +01:00
"dependencies": {
2024-03-17 00:29:42 +01:00
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartfile": "^11.2.7",
"@push.rocks/smartpath": "^6.0.0",
"@push.rocks/smartpromise": "^4.2.3",
"@push.rocks/smartrequest": "^4.2.2",
"@push.rocks/smartrx": "^3.0.10",
"@push.rocks/smartstream": "^3.2.5",
2024-06-08 10:30:03 +02:00
"@push.rocks/smartunique": "^3.0.9",
"@push.rocks/smarturl": "^3.1.0",
"@types/tar-stream": "^3.1.4",
2024-03-17 00:29:42 +01:00
"fflate": "^0.8.2",
"file-type": "^21.0.0",
2024-03-17 00:29:42 +01:00
"tar-stream": "^3.1.7",
2023-11-11 18:28:50 +01:00
"through": "^2.3.8"
2016-01-18 19:38:55 +01:00
},
2020-03-13 20:22:56 +00:00
"devDependencies": {
"@git.zone/tsbuild": "^2.6.6",
"@git.zone/tsrun": "^1.3.3",
"@git.zone/tstest": "^2.3.4"
2020-03-13 20:22:56 +00:00
},
"private": false,
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-03-16 15:13:58 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2020-03-13 20:22:56 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2021-04-19 11:49:25 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-04-14 17:20:20 +02:00
],
"keywords": [
"archive",
"compression",
"decompression",
"zip",
"tar",
2024-06-08 12:49:02 +02:00
"gzip",
2024-04-14 17:20:20 +02:00
"bzip2",
2024-06-08 12:49:02 +02:00
"file extraction",
"file creation",
"data analysis",
"file stream"
],
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748",
"pnpm": {
"overrides": {}
}
2024-06-08 12:49:03 +02:00
}