Skip to content

Commit 62ccf3d

Browse files
authored
Update package names and release v0.1.7 (#24)
1 parent fb7c845 commit 62ccf3d

File tree

4 files changed

+18
-13
lines changed

4 files changed

+18
-13
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.7] - 2025-06-07
11+
12+
## Changed
13+
- Updte README to use @lightfeed/extractor as new npm project
14+
1015
## [0.1.6] - 2025-06-07
1116

1217
## Changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
</p>
99

1010
<div align="center">
11-
<a href="https://www.npmjs.com/package/lightfeed-extract">
12-
<img src="https://img.shields.io/npm/v/lightfeed-extract?logo=npm" alt="npm" /></a>
13-
<a href="https://github.com/lightfeed/lightfeed-extract/actions/workflows/test.yml">
14-
<img src="https://img.shields.io/github/actions/workflow/status/lightfeed/lightfeed-extract/test.yml?branch=main"
11+
<a href="https://www.npmjs.com/package/@lightfeed/extractor">
12+
<img src="https://img.shields.io/npm/v/@lightfeed/extractor?logo=npm" alt="npm" /></a>
13+
<a href="https://github.com/lightfeed/extractor/actions/workflows/test.yml">
14+
<img src="https://img.shields.io/github/actions/workflow/status/lightfeed/extractor/test.yml?branch=main"
1515
alt="Test status (main branch)"></a>
16-
<a href="https://github.com/lightfeed/lightfeed-extract/blob/main/LICENSE">
17-
<img src="https://img.shields.io/github/license/lightfeed/lightfeed-extract" alt="License" /></a>
16+
<a href="https://github.com/lightfeed/extractor/blob/main/LICENSE">
17+
<img src="https://img.shields.io/github/license/lightfeed/extractor" alt="License" /></a>
1818
</div>
1919
<div>
2020
<p align="center">
@@ -51,7 +51,7 @@
5151
## Installation
5252

5353
```bash
54-
npm install lightfeed-extract
54+
npm install @lightfeed/extractor
5555
```
5656

5757
## Hosted Version
@@ -69,7 +69,7 @@ While this library provides a robust foundation for data extraction, you might w
6969
### Basic Example
7070

7171
```typescript
72-
import { extract, ContentFormat, LLMProvider } from "lightfeed-extract";
72+
import { extract, ContentFormat, LLMProvider } from "@lightfeed/extractor";
7373
import { z } from "zod";
7474

7575
async function main() {
@@ -335,7 +335,7 @@ The function returns a string containing the markdown conversion of the HTML con
335335
#### Example
336336

337337
```typescript
338-
import { convertHtmlToMarkdown, HTMLExtractionOptions } from "lightfeed-extract";
338+
import { convertHtmlToMarkdown, HTMLExtractionOptions } from "@lightfeed/extractor";
339339

340340
// Basic conversion
341341
const markdown = convertHtmlToMarkdown("<h1>Hello World</h1><p>This is a test</p>");
@@ -377,7 +377,7 @@ safeSanitizedParser<T>(schema: ZodTypeAny, rawObject: unknown): z.infer<T> | nul
377377
```
378378

379379
```typescript
380-
import { safeSanitizedParser } from "lightfeed-extract";
380+
import { safeSanitizedParser } from "@lightfeed/extractor";
381381
import { z } from "zod";
382382

383383
// Define a product catalog schema

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lightfeed/extractor",
3-
"version": "0.1.6",
3+
"version": "0.1.7",
44
"description": "Use LLMs to robustly extract and enrich structured data from HTML and markdown",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)