-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.67 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
{
"name": "@epubknowledge/zippy",
"version": "1.0.0",
"description": "Zip and unzip CLI and library for EPUB containers",
"type": "module",
"bin": {
"zippy": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json --resolve-full-paths",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"prepack": "npm run build",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"archiver": "^7.0.1",
"commander": "^12.1.0",
"fs-extra": "^11.2.0",
"unzipper": "^0.12.3"
},
"devDependencies": {
"@types/archiver": "^6.0.2",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.0.0",
"@types/tmp": "^0.2.6",
"@types/unzipper": "^0.10.10",
"@vitest/coverage-v8": "^4.1.6",
"tmp": "^0.2.3",
"tsc-alias": "^1.8.16",
"tsx": "^4.19.2",
"typescript": "^5.4.5",
"vitest": "^4.1.6"
},
"engines": {
"node": ">=22.0.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/epubknowledge/zippy.git"
},
"prettier": {
"singleQuote": true,
"semi": false,
"bracketSpacing": true,
"arrowParens": "avoid",
"trailingComma": "all",
"printWidth": 100,
"endOfLine": "lf"
},
"exports": {
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js"
},
"./zip": {
"types": "./dist/zip.d.ts",
"import": "./dist/zip.js"
},
"./unzip": {
"types": "./dist/unzip.d.ts",
"import": "./dist/unzip.js"
}
}
}