@heripo/pdf-parser 0.1.0 → 0.1.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.
- package/package.json +21 -28
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@heripo/pdf-parser",
|
|
3
3
|
"private": false,
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.1",
|
|
6
6
|
"description": "PDF parsing library using Docling SDK with OCR support for macOS",
|
|
7
7
|
"main": "dist/index.cjs",
|
|
8
8
|
"module": "dist/index.js",
|
|
@@ -55,6 +55,24 @@
|
|
|
55
55
|
"publishConfig": {
|
|
56
56
|
"access": "public"
|
|
57
57
|
},
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"docling-sdk": "^1.3.6",
|
|
60
|
+
"es-toolkit": "^1.44.0",
|
|
61
|
+
"yauzl": "^3.2.0",
|
|
62
|
+
"@heripo/model": "0.1.1"
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@types/yauzl": "^2.10.3",
|
|
66
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
67
|
+
"@vitest/expect": "^3.2.4",
|
|
68
|
+
"tsup": "^8.5.1",
|
|
69
|
+
"vitest": "^3.2.4",
|
|
70
|
+
"@heripo/logger": "0.0.0",
|
|
71
|
+
"@heripo/tsconfig": "0.0.0",
|
|
72
|
+
"@heripo/vitest-config": "0.0.0",
|
|
73
|
+
"@heripo/tsup-config": "0.0.0",
|
|
74
|
+
"@heripo/shared": "0.0.0"
|
|
75
|
+
},
|
|
58
76
|
"scripts": {
|
|
59
77
|
"clean": "rimraf dist",
|
|
60
78
|
"build": "pnpm clean && tsup",
|
|
@@ -66,31 +84,6 @@
|
|
|
66
84
|
"test:coverage": "vitest run --coverage",
|
|
67
85
|
"test:coverage:watch": "vitest --coverage",
|
|
68
86
|
"lint": "eslint src/**/*.ts",
|
|
69
|
-
"lint:fix": "eslint src/**/*.ts --fix"
|
|
70
|
-
"prepublishOnly": "pnpm build",
|
|
71
|
-
"preversion": "pnpm build",
|
|
72
|
-
"postversion": "git push --follow-tags",
|
|
73
|
-
"release": "npm publish --access public",
|
|
74
|
-
"release:patch": "npm version patch && npm publish --access public",
|
|
75
|
-
"release:minor": "npm version minor && npm publish --access public",
|
|
76
|
-
"release:major": "npm version major && npm publish --access public"
|
|
77
|
-
},
|
|
78
|
-
"dependencies": {
|
|
79
|
-
"@heripo/model": "workspace:*",
|
|
80
|
-
"docling-sdk": "^1.3.6",
|
|
81
|
-
"es-toolkit": "catalog:",
|
|
82
|
-
"yauzl": "^3.2.0"
|
|
83
|
-
},
|
|
84
|
-
"devDependencies": {
|
|
85
|
-
"@heripo/logger": "workspace:*",
|
|
86
|
-
"@heripo/shared": "workspace:*",
|
|
87
|
-
"@heripo/tsconfig": "workspace:*",
|
|
88
|
-
"@heripo/tsup-config": "workspace:*",
|
|
89
|
-
"@heripo/vitest-config": "workspace:*",
|
|
90
|
-
"@types/yauzl": "^2.10.3",
|
|
91
|
-
"@vitest/coverage-v8": "catalog:",
|
|
92
|
-
"@vitest/expect": "catalog:",
|
|
93
|
-
"tsup": "catalog:",
|
|
94
|
-
"vitest": "catalog:"
|
|
87
|
+
"lint:fix": "eslint src/**/*.ts --fix"
|
|
95
88
|
}
|
|
96
|
-
}
|
|
89
|
+
}
|