forked from gildas-lormeau/zip.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.24 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@zip.js/zip.js",
"description": "A JavaScript library to zip and unzip files in the browser and Deno",
"author": "Gildas Lormeau",
"license": "BSD-3-Clause",
"version": "2.3.24",
"type": "module",
"keywords": [
"zip",
"unzip",
"browser",
"web",
"aes-256",
"aes-192",
"aes-128",
"zip-crypto",
"encryption",
"zip64",
"stream",
"web-crypto",
"web-workers",
"deno"
],
"scripts": {
"build": "./build.sh"
},
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/gildas-lormeau/zip.js.git"
},
"bugs": {
"url": "https://github.com/gildas-lormeau/zip.js/issues"
},
"homepage": "https://gildas-lormeau.github.io/zip.js",
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.8",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^3.0.1",
"core-js": "^3.20.3",
"rollup": "^2.59.0",
"rollup-plugin-terser": "^7.0.2"
}
}