zynx-pdf 0.1.0 → 0.1.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 +132 -2
- package/dist/zynx-pdf.js +2 -2
- package/dist/zynx-pdf.umd.cjs +1 -1
- package/package.json +7 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zynx-pdf",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Zynx PDF is a modern React PDF viewer and editor built with Mozilla PDF.js and pdf-lib.",
|
|
5
5
|
"author": "Hafiz Muhammad Zunnoorain",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -30,7 +30,11 @@
|
|
|
30
30
|
"build": "tsc -b && vite build",
|
|
31
31
|
"build:lib": "vite build --config vite.lib.config.ts && tsc -p tsconfig.lib.json",
|
|
32
32
|
"prepublishOnly": "npm run build:lib",
|
|
33
|
-
"preview": "vite preview"
|
|
33
|
+
"preview": "vite preview",
|
|
34
|
+
"release": "node scripts/release.mjs patch",
|
|
35
|
+
"release:patch": "node scripts/release.mjs patch",
|
|
36
|
+
"release:minor": "node scripts/release.mjs minor",
|
|
37
|
+
"release:major": "node scripts/release.mjs major"
|
|
34
38
|
},
|
|
35
39
|
"keywords": [
|
|
36
40
|
"pdf",
|
|
@@ -62,4 +66,4 @@
|
|
|
62
66
|
"react": ">=18",
|
|
63
67
|
"react-dom": ">=18"
|
|
64
68
|
}
|
|
65
|
-
}
|
|
69
|
+
}
|