forked from gildas-lormeau/zip.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.39 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.39 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@zip.js/zip.js",
"description": "A JavaScript library to zip and unzip files in the browser, Deno and Node.js",
"author": "Gildas Lormeau",
"license": "BSD-3-Clause",
"version": "2.7.72",
"type": "module",
"keywords": [
"zip",
"unzip",
"browser",
"web",
"aes-256",
"aes-192",
"aes-128",
"zip-crypto",
"encryption",
"zip64",
"web-streams",
"compression-streams",
"web-crypto",
"web-workers",
"deno",
"node.js",
"multi-core",
"split-zip",
"usdz"
],
"engines": {
"deno": ">=1.0.0",
"node": ">=16.5.0",
"bun": ">=0.7.0"
},
"scripts": {
"build": "npx rollup -c",
"build-dev": "npx rollup -c rollup.config.dev.js",
"build-fflate": "npm i --no-save fflate && npx rollup -c rollup-fflate.config.js",
"build-fflate-dev": "npm i --no-save fflate && npx rollup -c rollup-fflate.config.dev.js",
"build-doc-api": "npx typedoc",
"build-doc-markdown": "npx typedoc --plugin typedoc-plugin-markdown --out ./docs",
"test-deno": "cd ./tests && deno test --allow-read ./deno-runner.js",
"test-node": "cd ./tests && node ./node-runner.js",
"test-bun": "cd ./tests && bun test ./bun-runner.js",
"test-firefox": "firefox http://localhost:8081/tests/ & npx http-server -p=8081 & wait $!",
"test-chrome": "google-chrome http://localhost:8081/tests/ & npx http-server -p=8081 & wait $!"
},
"main": "./index.cjs",
"module": "./index.js",
"types": "./index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./index.d.ts",
"default": "./index.js"
},
"require": {
"types": "./index.d.ts",
"default": "./index.cjs"
}
},
"./index.min.js": {
"import": {
"types": "./index.d.ts",
"default": "./index.min.js"
}
},
"./data-uri.js": {
"import": {
"types": "./index.d.ts",
"default": "./lib/zip-data-uri.js"
}
},
"./lib/zip-fs.js": {
"import": {
"types": "./lib/zip-fs.d.ts",
"default": "./lib/zip-fs.js"
}
},
"./lib/zip-full.js": {
"import": {
"types": "./lib/zip-full.d.ts",
"default": "./lib/zip-full.js"
}
},
"./lib/zip-no-worker-deflate.js": {
"import": {
"types": "./lib/zip-no-worker-deflate.d.ts",
"default": "./lib/zip-no-worker-deflate.js"
}
},
"./lib/zip-no-worker-inflate.js": {
"import": {
"types": "./lib/zip-no-worker-inflate.d.ts",
"default": "./lib/zip-no-worker-inflate.js"
}
},
"./lib/zip-no-worker.js": {
"import": {
"types": "./lib/zip-no-worker.d.ts",
"default": "./lib/zip-no-worker.js"
}
},
"./lib/zip.js": {
"import": {
"types": "./lib/zip.d.ts",
"default": "./lib/zip.js"
}
}
},
"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": {
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^9.32.0",
"http-server": "^14.1.1",
"rollup": "^4.46.2",
"typedoc": "^0.28.9",
"typedoc-plugin-markdown": "^4.8.0"
}
}