-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
34 lines (34 loc) · 982 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "client-zip",
"version": "2.4.6",
"description": "A tiny and fast client-side streaming ZIP generator",
"browser": "index.js",
"module": "index.js",
"types": "index.d.ts",
"type": "module",
"exports": {
".": "./index.js"
},
"scripts": {
"start": "npm run build:module && npm run build:worker",
"build:module": "esbuild --target=es2020 --bundle src/index.ts --format=esm | terser --config-file terser.json --module -o index.js",
"build:worker": "esbuild --target=es2020 --bundle src/worker.ts --format=iife --global-name=downloadZip | terser --config-file terser.json -o worker.js",
"test": "deno test --allow-read test/"
},
"repository": {
"type": "git",
"url": "[email protected]:Touffy/client-zip.git"
},
"keywords": [
"zip",
"stream",
"browser",
"zip64"
],
"author": "David Junger <[email protected]>",
"license": "MIT",
"devDependencies": {
"esbuild": "^0.17.19",
"terser": "~5.14"
}
}