pi-docparser 1.1.0 → 1.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/CHANGELOG.md +6 -0
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project follows semantic versioning.
|
|
6
6
|
|
|
7
|
+
## [1.1.1] - 2026-03-20
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- added explicit `extension` and `skill` npm keywords so the Pi package gallery can show the correct package type badges for `pi-docparser`
|
|
12
|
+
|
|
7
13
|
## [1.1.0] - 2026-03-20
|
|
8
14
|
|
|
9
15
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-docparser",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Pi package that adds a document_parse tool and companion skill for parsing PDFs, Office documents, spreadsheets, and images with LiteParse.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"document-parse",
|
|
7
7
|
"documents",
|
|
8
|
+
"extension",
|
|
8
9
|
"liteparse",
|
|
9
10
|
"ocr",
|
|
10
11
|
"pdf",
|
|
11
12
|
"pi",
|
|
12
|
-
"pi-package"
|
|
13
|
+
"pi-package",
|
|
14
|
+
"skill"
|
|
13
15
|
],
|
|
14
16
|
"homepage": "https://maximilian-schwarzmueller.com",
|
|
15
17
|
"license": "MIT",
|