-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from johnie/feature/effect-schema
feat: add support for effect schema
- Loading branch information
Showing
9 changed files
with
835 additions
and
1,593 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'xscrape': minor | ||
--- | ||
|
||
Add support for Effect/Schema validator |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,64 @@ | ||
{ | ||
"name": "xscrape", | ||
"version": "1.1.1", | ||
"description": "A flexible and powerful library designed to extract and transform data from HTML documents using user-defined schemas", | ||
"main": "dist/index.js", | ||
"exports": { | ||
".": { | ||
"import": "./dist/index.js", | ||
"require": "./dist/index.cjs" | ||
"name": "xscrape", | ||
"version": "1.1.1", | ||
"description": "A flexible and powerful library designed to extract and transform data from HTML documents using user-defined schemas", | ||
"main": "dist/index.js", | ||
"exports": { | ||
".": { | ||
"import": "./dist/index.js", | ||
"require": "./dist/index.cjs" | ||
} | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"type": "module", | ||
"scripts": { | ||
"build": "tsup", | ||
"ci": "npm run build && npm run check-format && npm run check-exports && npm run lint && npm run test", | ||
"lint": "tsc", | ||
"test": "vitest run", | ||
"format": "prettier --write ./src", | ||
"check-format": "prettier --check ./src", | ||
"check-exports": "attw --pack .", | ||
"local-release": "npm run ci && changeset version && changeset publish" | ||
}, | ||
"keywords": [ | ||
"web-scraping", | ||
"data-extraction", | ||
"automation", | ||
"html-parsing", | ||
"data-transformation", | ||
"user-defined-schemas", | ||
"crawler", | ||
"scraper", | ||
"zod", | ||
"yup", | ||
"joi", | ||
"effect-schema" | ||
], | ||
"author": "Johnie Hjelm <[email protected]>", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/johnie/xscrape.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/johnie/xscrape/issues" | ||
}, | ||
"homepage": "https://github.com/johnie/xscrape#readme", | ||
"devDependencies": { | ||
"@arethetypeswrong/cli": "^0.16.4", | ||
"@changesets/cli": "^2.27.9", | ||
"prettier": "^3.3.3", | ||
"tsup": "^8.3.5", | ||
"typescript": "^5.6.3", | ||
"vite": "^5.4.10", | ||
"vitest": "^2.1.3" | ||
}, | ||
"dependencies": { | ||
"cheerio": "^1.0.0", | ||
"effect": "^3.10.4", | ||
"zod": "^3.23.8" | ||
} | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"type": "module", | ||
"scripts": { | ||
"build": "tsup", | ||
"ci": "npm run build && npm run check-format && npm run check-exports && npm run lint && npm run test", | ||
"lint": "tsc", | ||
"test": "vitest run", | ||
"format": "prettier --write .", | ||
"check-format": "prettier --check .", | ||
"check-exports": "attw --pack .", | ||
"local-release": "npm run ci && changeset version && changeset publish" | ||
}, | ||
"keywords": [ | ||
"web-scraping", | ||
"data-extraction", | ||
"automation", | ||
"html-parsing", | ||
"data-transformation", | ||
"user-defined-schemas", | ||
"crawler", | ||
"scraper", | ||
"zod", | ||
"yup", | ||
"joi", | ||
"effect-schema" | ||
], | ||
"author": "Johnie Hjelm <[email protected]>", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/johnie/xscrape.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/johnie/xscrape/issues" | ||
}, | ||
"homepage": "https://github.com/johnie/xscrape#readme", | ||
"devDependencies": { | ||
"@arethetypeswrong/cli": "^0.16.4", | ||
"@changesets/cli": "^2.27.9", | ||
"prettier": "^3.3.3", | ||
"tsup": "^8.3.5", | ||
"typescript": "^5.6.3", | ||
"vite": "^5.4.10", | ||
"vitest": "^2.1.3" | ||
}, | ||
"dependencies": { | ||
"cheerio": "^1.0.0", | ||
"zod": "^3.23.8" | ||
} | ||
} |
Oops, something went wrong.