@likecoin/epubcheck-ts 0.3.2 → 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -1
- package/bin/epubcheck.js +2 -4
- package/bin/epubcheck.ts +9 -13
- package/dist/index.cjs +754 -41
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +754 -41
- package/dist/index.js.map +1 -1
- package/package.json +9 -15
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@likecoin/epubcheck-ts",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.4",
|
|
4
4
|
"description": "EPUB validation library for Node.js and browsers",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -17,10 +17,7 @@
|
|
|
17
17
|
"bin": {
|
|
18
18
|
"epubcheck-ts": "bin/epubcheck.js"
|
|
19
19
|
},
|
|
20
|
-
"files": [
|
|
21
|
-
"dist",
|
|
22
|
-
"bin"
|
|
23
|
-
],
|
|
20
|
+
"files": ["dist", "bin"],
|
|
24
21
|
"sideEffects": false,
|
|
25
22
|
"engines": {
|
|
26
23
|
"node": ">=18"
|
|
@@ -39,7 +36,10 @@
|
|
|
39
36
|
"check": "biome format . && eslint . && tsc --noEmit",
|
|
40
37
|
"typecheck": "tsc --noEmit",
|
|
41
38
|
"prepublishOnly": "npm run build",
|
|
42
|
-
"
|
|
39
|
+
"docs": "npm run docs:html && npm run docs:md",
|
|
40
|
+
"docs:html": "typedoc --out docs/html",
|
|
41
|
+
"docs:md": "typedoc --plugin typedoc-plugin-markdown --out docs/md",
|
|
42
|
+
"clean": "rm -rf dist coverage docs"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"css-tree": "^3.0.1",
|
|
@@ -57,19 +57,13 @@
|
|
|
57
57
|
"@vitest/coverage-v8": "^4.0.18",
|
|
58
58
|
"eslint": "^9.17.0",
|
|
59
59
|
"tsup": "^8.3.5",
|
|
60
|
+
"typedoc": "^0.28.16",
|
|
61
|
+
"typedoc-plugin-markdown": "^4.10.0",
|
|
60
62
|
"typescript": "^5.7.2",
|
|
61
63
|
"typescript-eslint": "^8.18.1",
|
|
62
64
|
"vitest": "^4.0.18"
|
|
63
65
|
},
|
|
64
|
-
"keywords": [
|
|
65
|
-
"epub",
|
|
66
|
-
"epubcheck",
|
|
67
|
-
"validation",
|
|
68
|
-
"ebook",
|
|
69
|
-
"w3c",
|
|
70
|
-
"accessibility",
|
|
71
|
-
"a11y"
|
|
72
|
-
],
|
|
66
|
+
"keywords": ["epub", "epubcheck", "validation", "ebook", "w3c", "accessibility", "a11y"],
|
|
73
67
|
"author": "",
|
|
74
68
|
"license": "GPL-3.0-only",
|
|
75
69
|
"repository": {
|