-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.27 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
{
"name": "zip-lib",
"version": "1.4.0",
"description": "A zip and unzip library for Node.js.",
"module": "./esm/index.js",
"main": "./lib/index.js",
"types": "./esm/index.d.ts",
"scripts": {
"lint": "biome lint",
"tsc-cjs": "tsc -p ./tsconfigs/tsconfig.production.cjs.json",
"tsc-esm": "tsc -p ./tsconfigs/tsconfig.production.esm.json",
"release": "rimraf ./pkg && npm run tsc-cjs && npm run tsc-esm && node ./build.mjs",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/fpsqdb/zip-lib.git"
},
"engines": {
"node": ">=20"
},
"keywords": [
"zip",
"folder",
"unzip",
"archive",
"extract",
"promise",
"async"
],
"author": "fpsqdb",
"license": "MIT",
"dependencies": {
"yauzl": "^3.4.0",
"yazl": "^3.3.1"
},
"devDependencies": {
"@biomejs/biome": "^2.5.7",
"@types/node": "^20.19.43",
"@types/yauzl": "^3.4.0",
"@types/yazl": "^3.3.1",
"@vitest/coverage-v8": "^4.1.2",
"rimraf": "^6.1.3",
"typescript": "^7.0.2",
"vitest": "^4.0.18"
}
}