-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.06 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.06 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
{
"author": "Florian Imdahl <git@ffflorian.de>",
"bin": "dist/cli.js",
"dependencies": {
"commander": "13.1.0",
"cosmiconfig": "9.0.0",
"fs-extra": "11.2.0",
"glob": "11.0.0",
"jszip": "3.10.1",
"logdown": "3.3.1",
"progress": "2.0.3"
},
"description": "A zip CLI based on jszip.",
"devDependencies": {
"@types/fs-extra": "11.0.4",
"@types/progress": "2.0.7",
"cross-env": "7.0.3",
"rimraf": "6.0.1",
"typescript": "5.7.3",
"vitest": "2.1.8"
},
"engines": {
"node": ">= 18.0"
},
"files": [
"dist"
],
"keywords": [
"cli",
"jszip",
"typescript",
"zip"
],
"license": "GPL-3.0",
"module": "dist/index.js",
"name": "@ffflorian/jszip-cli",
"repository": "https://github.com/ffflorian/node-packages/tree/main/packages/jszip-cli",
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rimraf dist",
"dist": "yarn clean && yarn build",
"start": "node --loader ts-node/esm src/cli.ts -V",
"test": "vitest run"
},
"type": "module",
"version": "3.8.2"
}