@vue-pdf-viewer/shared 1.0.0-beta.7 → 1.0.0-rc.1

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.
Files changed (2) hide show
  1. package/README.md +22 -1
  2. package/package.json +9 -1
package/README.md CHANGED
@@ -1 +1,22 @@
1
- This library is for experimental
1
+ # A shared library of Vue PDF Viewer
2
+
3
+ **Internal package** for the **Vue PDF Viewer** ecosystem.
4
+ This package contains shared **types**, **interfaces**, **enums**, and **constants** used by other `@vue-pdf-viewer/*` libraries such as:
5
+
6
+ - [`@vue-pdf-viewer/viewer`](https://www.npmjs.com/package/@vue-pdf-viewer/viewer)
7
+ - [`@vue-pdf-viewer/annotation`](https://www.npmjs.com/package/@vue-pdf-viewer/annotation)
8
+
9
+ ---
10
+
11
+ ## **Important Notice**
12
+
13
+ > **This package is not intended for direct use by developers.**
14
+ > It exists solely for internal purposes and may change at any time without notice.
15
+ > Please install and use higher-level packages such as **`@vue-pdf-viewer/viewer`** or **`@vue-pdf-viewer/annotation`** instead.
16
+
17
+ ---
18
+
19
+ ## **License**
20
+
21
+ This package is distributed under the same license as the **Vue PDF Viewer** project.
22
+ Usage outside the VPV ecosystem is **not supported**.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vue-pdf-viewer/shared",
3
3
  "private": false,
4
- "version": "1.0.0-beta.7",
4
+ "version": "1.0.0-rc.1",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.js",
@@ -32,5 +32,13 @@
32
32
  "typescript": "^5.0.0",
33
33
  "vite": "^3.1.0",
34
34
  "vue-tsc": "^0.40.4"
35
+ },
36
+ "description": "A shared library of vue-pdf-viewer for Vue and Nuxt.",
37
+ "author": "Vue PDF Viewer <david@vue-pdf-viewer.dev>",
38
+ "license": "See license section",
39
+ "homepage": "https://www.vue-pdf-viewer.dev",
40
+ "url": "https://github.com/vue-pdf-viewer/vue-pdf-viewer",
41
+ "bugs": {
42
+ "url": "https://github.com/vue-pdf-viewer/vue-pdf-viewer/issues/new"
35
43
  }
36
44
  }