@yuwenovo/ocr-result-view 1.0.0 → 2.0.0

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 CHANGED
@@ -309,4 +309,4 @@ const viewer = ref<OcrResultViewExpose>()
309
309
  --viewer-card-text: #e5e7eb;
310
310
  }
311
311
  </style>
312
- ```
312
+ ```
@@ -23,4 +23,3 @@ const viewer = ref<OcrResultViewExpose>()
23
23
  </OcrResultView>
24
24
  </div>
25
25
  </template>
26
-
package/package.json CHANGED
@@ -1,7 +1,11 @@
1
1
  {
2
2
  "name": "@yuwenovo/ocr-result-view",
3
- "version": "1.0.0",
3
+ "version": "2.0.0",
4
4
  "description": "Vue 3 OCR document comparison result viewer with virtualized Canvas rendering",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/yuwenOvO/yw-ocr-result-view.git"
8
+ },
5
9
  "type": "module",
6
10
  "main": "./dist/ocr-result-view.js",
7
11
  "module": "./dist/ocr-result-view.js",
@@ -24,6 +28,11 @@
24
28
  "sideEffects": [
25
29
  "**/*.css"
26
30
  ],
31
+ "scripts": {
32
+ "build": "vite build && vue-tsc -p tsconfig.build.json",
33
+ "type-check": "vue-tsc -p tsconfig.json --noEmit",
34
+ "prepack": "pnpm run build"
35
+ },
27
36
  "peerDependencies": {
28
37
  "vue": "^3.5.0"
29
38
  },
@@ -41,8 +50,5 @@
41
50
  "node": "^22.18.0 || ^24.12.0 || >=26.0.0"
42
51
  },
43
52
  "license": "ISC",
44
- "scripts": {
45
- "build": "vite build && vue-tsc -p tsconfig.build.json",
46
- "type-check": "vue-tsc -p tsconfig.json --noEmit"
47
- }
48
- }
53
+ "packageManager": "pnpm@12.4.1"
54
+ }