streaming 7-Zip archive extractor
1{
2 "name": "@mary/7zip",
3 "version": "0.1.1",
4 "license": "0BSD",
5 "exports": {
6 ".": "./lib/mod.ts",
7 "./deno": "./lib/reader/deno.ts",
8 "./node": "./lib/reader/node.ts"
9 },
10 "tasks": {
11 "test": "deno test --allow-net --allow-read"
12 },
13 "exclude": [".research/", "tests/fixtures/"],
14 "fmt": {
15 "useTabs": true,
16 "indentWidth": 2,
17 "lineWidth": 110,
18 "semiColons": true,
19 "singleQuote": true
20 },
21 "publish": {
22 "include": ["lib/", "LICENSE", "README.md", "deno.json"]
23 },
24 "imports": {
25 "@mary/crc32": "jsr:@mary/crc32@^0.1.2",
26 "@mary/ds-queue": "jsr:@mary/ds-queue@^0.1.3",
27 "@mary/mutex": "jsr:@mary/mutex@^0.1.0",
28 "@std/assert": "jsr:@std/assert@^1"
29 }
30}