-
Notifications
You must be signed in to change notification settings - Fork 306
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.29 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.29 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
{
"name": "epub",
"version": "2.1.1",
"description": "Parse EPUB electronic book files with Node.JS",
"keywords": [
"books",
"epub"
],
"homepage": "http://github.com/julien-c/epub",
"license": "MIT",
"author": "Andris Reinman",
"contributors": [
{
"name": "andris",
"email": "andris@node.ee"
},
{
"name": "Julien Chaumond",
"url": "https://github.com/julien-c"
}
],
"repository": {
"type": "git",
"url": "http://github.com/julien-c/epub.git"
},
"files": [
"epub.ts",
"cli.ts",
"dist"
],
"type": "module",
"main": "./dist/epub.js",
"types": "./dist/epub.d.ts",
"exports": {
".": {
"types": "./dist/epub.d.ts",
"default": "./dist/epub.js"
}
},
"bin": "./dist/cli.js",
"scripts": {
"build": "tsc",
"format": "oxfmt --write '**/*.ts'",
"format:check": "oxfmt --check '**/*.ts'",
"lint": "oxlint -c oxlint.json --fix",
"lint:check": "oxlint -c oxlint.json",
"test": "node --experimental-strip-types test/test.ts"
},
"dependencies": {
"fast-xml-parser": "^5.3.7",
"jszip": "^3.10.1"
},
"devDependencies": {
"@types/node": "^25.3.0",
"oxfmt": "^0.35.0",
"oxlint": "^1.50.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22.6.0"
}
}