75 lines
1.8 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",
2024-10-13 13:24:06 +02:00
"version": "4.0.38",
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": {
2021-04-19 11:53:49 +00:00
"test": "(tstest test/ --web)",
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": {
2017-03-12 22:16:48 +01:00
"url": "https://github.com/pushrocks/smartarchive/issues"
2016-01-18 19:38:55 +01:00
},
2024-05-29 14:11:45 +02:00
"homepage": "https://code.foss.global/push.rocks/smartarchive",
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.0.21",
2024-06-08 10:30:03 +02:00
"@push.rocks/smartpath": "^5.0.18",
"@push.rocks/smartpromise": "^4.0.4",
2024-06-08 10:30:03 +02:00
"@push.rocks/smartrequest": "^2.0.22",
2023-11-06 18:14:21 +01:00
"@push.rocks/smartrx": "^3.0.7",
"@push.rocks/smartstream": "^3.0.46",
2024-06-08 10:30:03 +02:00
"@push.rocks/smartunique": "^3.0.9",
"@push.rocks/smarturl": "^3.1.0",
2023-11-08 17:01:48 +01:00
"@types/tar-stream": "^3.1.3",
2024-03-17 00:29:42 +01:00
"fflate": "^0.8.2",
"file-type": "^19.5.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.1.84",
"@git.zone/tsrun": "^1.2.49",
2024-06-08 10:30:03 +02:00
"@git.zone/tstest": "^1.0.90",
"@push.rocks/tapbundle": "^5.3.0"
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"
2020-03-13 20:22:56 +00:00
]
2024-06-08 12:49:03 +02:00
}