-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.07 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.07 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
{
"name": "bridge-zip",
"version": "0.0.6",
"description": "A Node.js CLI tool that seamlessly connects zip files between Windows and macOS, enabling cross-platform compatibility and efficient file handling.",
"repository": {
"type": "git",
"url": "git+https://github.com/opengiver/bridge-zip.git"
},
"main": "dist/index.js",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"keywords": [
"window",
"macos",
"zip",
"Compatibility"
],
"author": "Byungsker",
"license": "MIT",
"bugs": {
"url": "https://github.com/opengiver/bridge-zip/issues"
},
"homepage": "https://github.com/opengiver/bridge-zip#readme",
"dependencies": {
"adm-zip": "^0.5.16",
"cli-progress": "^3.12.0",
"commander": "^13.1.0",
"cli-spinners": "^2.7.0"
},
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/cli-progress": "^3.11.6",
"@types/node": "^22.13.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"bin": {
"bridge-zip": "dist/index.js"
}
}