-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 928 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
35
36
37
38
39
40
{
"devDependencies": {
"@types/node": "^18.15.12",
"esbuild": "^0.14.54"
},
"exports": {
".": {
"import": {
"types": "./index.d.ts",
"node": "./index.node.min.mjs",
"browser": "./index.browser.min.mjs"
}
}
},
"imports": {
"#default-inflate": {
"node": "./src/default-inflate.node.js",
"browser": "./src/default-inflate.browser.js"
}
},
"type": "module",
"name": "but-unzip",
"version": "0.1.4",
"description": "tiny unzip for node/browser",
"scripts": {
"test": "node --test",
"build": "node build-all.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"unzip"
],
"types": "index.d.ts",
"author": "Sam Thorogood <sam.thorogood@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/samthor/but-unzip/issues"
},
"homepage": "https://github.com/samthor/but-unzip#readme"
}