@likecoin/epubcheck-ts 0.6.1 → 0.6.2
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 -3
- package/bin/epubcheck.js +1 -1
- package/bin/epubcheck.ts +1 -1
- package/dist/index.cjs +35 -14
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +33 -12
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@likecoin/epubcheck-ts",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
4
4
|
"description": "EPUB validation for Node.js and browsers — TypeScript port of EPUBCheck",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"generate:schemas": "npx tsx scripts/generate-schemas.ts",
|
|
29
29
|
"test": "vitest",
|
|
30
30
|
"test:run": "vitest run",
|
|
31
|
+
"test:packaging": "vitest run --config vitest.packaging.config.ts",
|
|
31
32
|
"test:coverage": "vitest run --coverage",
|
|
32
33
|
"lint": "eslint .",
|
|
33
34
|
"lint:fix": "eslint . --fix",
|
|
@@ -35,7 +36,7 @@
|
|
|
35
36
|
"format:check": "biome format .",
|
|
36
37
|
"check": "biome format . && eslint . && tsc --noEmit",
|
|
37
38
|
"typecheck": "tsc --noEmit",
|
|
38
|
-
"prepublishOnly": "npm run build",
|
|
39
|
+
"prepublishOnly": "npm run build && npm run test:packaging",
|
|
39
40
|
"docs": "npm run docs:html && npm run docs:md",
|
|
40
41
|
"docs:html": "typedoc --out docs/html",
|
|
41
42
|
"docs:md": "typedoc --plugin typedoc-plugin-markdown --out docs/md",
|