smartarchive/package.json

71 lines
1.8 KiB
JSON
Raw Normal View History

2016-01-18 18:38:55 +00:00
{
2023-07-10 00:42:07 +00:00
"name": "@push.rocks/smartarchive",
2024-06-06 18:59:05 +00:00
"version": "4.0.24",
2024-04-14 15:20:20 +00: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 12:15:51 +00:00
"type": "module",
2016-01-18 18:38:55 +00:00
"scripts": {
2021-04-19 11:53:49 +00:00
"test": "(tstest test/ --web)",
2023-07-26 14:13:33 +00:00
"build": "tsbuild --web --allowimplicitany",
"buildDocs": "tsdoc"
2016-01-18 18:38:55 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:11:45 +00:00
"url": "https://code.foss.global/push.rocks/smartarchive.git"
2016-01-18 18:38:55 +00:00
},
2017-03-12 21:16:48 +00:00
"author": "Lossless GmbH",
2016-01-18 18:38:55 +00:00
"license": "MIT",
"bugs": {
2017-03-12 21:16:48 +00:00
"url": "https://github.com/pushrocks/smartarchive/issues"
2016-01-18 18:38:55 +00:00
},
2024-05-29 12:11:45 +00:00
"homepage": "https://code.foss.global/push.rocks/smartarchive",
2016-01-18 18:38:55 +00:00
"dependencies": {
2024-03-16 23:29:42 +00:00
"@push.rocks/smartdelay": "^3.0.5",
2024-06-08 08:30:03 +00:00
"@push.rocks/smartfile": "^11.0.20",
"@push.rocks/smartpath": "^5.0.18",
2023-07-26 14:13:33 +00:00
"@push.rocks/smartpromise": "^4.0.3",
2024-06-08 08:30:03 +00:00
"@push.rocks/smartrequest": "^2.0.22",
2023-11-06 17:14:21 +00:00
"@push.rocks/smartrx": "^3.0.7",
2024-06-08 08:30:03 +00:00
"@push.rocks/smartstream": "^3.0.44",
"@push.rocks/smartunique": "^3.0.9",
2023-11-06 17:14:21 +00:00
"@push.rocks/smarturl": "^3.0.7",
2023-11-08 16:01:48 +00:00
"@types/tar-stream": "^3.1.3",
2024-03-16 23:29:42 +00:00
"fflate": "^0.8.2",
"file-type": "^19.0.0",
"tar-stream": "^3.1.7",
2023-11-11 17:28:50 +00:00
"through": "^2.3.8"
2016-01-18 18:38:55 +00:00
},
2020-03-13 20:22:56 +00:00
"devDependencies": {
2024-06-08 08:30:03 +00:00
"@git.zone/tsbuild": "^2.1.80",
2023-11-06 17:14:21 +00:00
"@git.zone/tsrun": "^1.2.44",
2024-06-08 08:30:03 +00:00
"@git.zone/tstest": "^1.0.90",
"@push.rocks/tapbundle": "^5.0.23"
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 15:20:20 +00:00
],
"keywords": [
"archive",
"compression",
"decompression",
"zip",
"tar",
"bzip2",
"gzip"
2020-03-13 20:22:56 +00:00
]
2024-06-06 18:48:03 +00:00
}