smartarchive/package.json

61 lines
1.5 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",
2023-11-08 16:01:49 +00:00
"version": "4.0.6",
2017-03-12 21:20:10 +00:00
"description": "work with archives",
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",
2017-03-12 21:16:48 +00:00
"url": "git+https://github.com/pushrocks/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
},
2017-03-12 21:16:48 +00:00
"homepage": "https://github.com/pushrocks/smartarchive#readme",
2016-01-18 18:38:55 +00:00
"dependencies": {
2023-11-06 17:14:21 +00:00
"@push.rocks/smartfile": "^11.0.0",
2023-07-26 14:13:33 +00:00
"@push.rocks/smartpath": "^5.0.11",
"@push.rocks/smartpromise": "^4.0.3",
2023-11-06 17:14:21 +00:00
"@push.rocks/smartrequest": "^2.0.20",
"@push.rocks/smartrx": "^3.0.7",
2023-11-08 16:01:48 +00:00
"@push.rocks/smartstream": "^3.0.12",
2023-11-06 17:14:21 +00:00
"@push.rocks/smartunique": "^3.0.6",
"@push.rocks/smarturl": "^3.0.7",
2023-11-08 16:01:48 +00:00
"@types/tar-stream": "^3.1.3",
2023-11-06 17:14:21 +00:00
"fflate": "^0.8.1",
"file-type": "^18.6.0",
"tar-stream": "^3.1.6",
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": {
2023-11-06 17:14:21 +00:00
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.15"
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"
2020-03-13 20:22:56 +00:00
]
2023-07-26 14:13:53 +00:00
}