xscrape 1.2.0 → 1.3.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.
Files changed (1) hide show
  1. package/package.json +62 -62
package/package.json CHANGED
@@ -1,64 +1,64 @@
1
1
  {
2
- "name": "xscrape",
3
- "version": "1.2.0",
4
- "description": "A flexible and powerful library designed to extract and transform data from HTML documents using user-defined schemas",
5
- "main": "dist/index.js",
6
- "exports": {
7
- ".": {
8
- "import": "./dist/index.js",
9
- "require": "./dist/index.cjs"
10
- }
11
- },
12
- "files": [
13
- "dist"
14
- ],
15
- "type": "module",
16
- "scripts": {
17
- "build": "tsup",
18
- "ci": "npm run build && npm run check-format && npm run check-exports && npm run lint && npm run test",
19
- "lint": "tsc",
20
- "test": "vitest run",
21
- "format": "prettier --write ./src",
22
- "check-format": "prettier --check ./src",
23
- "check-exports": "attw --pack .",
24
- "local-release": "npm run ci && changeset version && changeset publish"
25
- },
26
- "keywords": [
27
- "web-scraping",
28
- "data-extraction",
29
- "automation",
30
- "html-parsing",
31
- "data-transformation",
32
- "user-defined-schemas",
33
- "crawler",
34
- "scraper",
35
- "zod",
36
- "yup",
37
- "joi",
38
- "effect-schema"
39
- ],
40
- "author": "Johnie Hjelm <johnie@hjelm.im>",
41
- "license": "MIT",
42
- "repository": {
43
- "type": "git",
44
- "url": "git+https://github.com/johnie/xscrape.git"
45
- },
46
- "bugs": {
47
- "url": "https://github.com/johnie/xscrape/issues"
48
- },
49
- "homepage": "https://github.com/johnie/xscrape#readme",
50
- "devDependencies": {
51
- "@arethetypeswrong/cli": "^0.16.4",
52
- "@changesets/cli": "^2.27.9",
53
- "prettier": "^3.3.3",
54
- "tsup": "^8.3.5",
55
- "typescript": "^5.6.3",
56
- "vite": "^5.4.10",
57
- "vitest": "^2.1.3"
58
- },
59
- "dependencies": {
60
- "cheerio": "^1.0.0",
61
- "effect": "^3.10.4",
62
- "zod": "^3.23.8"
2
+ "name": "xscrape",
3
+ "version": "1.3.0",
4
+ "description": "A flexible and powerful library designed to extract and transform data from HTML documents using user-defined schemas",
5
+ "main": "dist/index.js",
6
+ "exports": {
7
+ ".": {
8
+ "import": "./dist/index.js",
9
+ "require": "./dist/index.cjs"
63
10
  }
64
- }
11
+ },
12
+ "files": [
13
+ "dist"
14
+ ],
15
+ "type": "module",
16
+ "keywords": [
17
+ "web-scraping",
18
+ "data-extraction",
19
+ "automation",
20
+ "html-parsing",
21
+ "data-transformation",
22
+ "user-defined-schemas",
23
+ "crawler",
24
+ "scraper",
25
+ "zod",
26
+ "yup",
27
+ "joi",
28
+ "effect-schema"
29
+ ],
30
+ "author": "Johnie Hjelm <johnie@hjelm.im>",
31
+ "license": "MIT",
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "git+https://github.com/johnie/xscrape.git"
35
+ },
36
+ "bugs": {
37
+ "url": "https://github.com/johnie/xscrape/issues"
38
+ },
39
+ "homepage": "https://github.com/johnie/xscrape#readme",
40
+ "devDependencies": {
41
+ "@arethetypeswrong/cli": "^0.16.4",
42
+ "@changesets/cli": "^2.27.9",
43
+ "prettier": "^3.3.3",
44
+ "tsup": "^8.3.5",
45
+ "typescript": "^5.6.3",
46
+ "vite": "^5.4.10",
47
+ "vitest": "^2.1.3"
48
+ },
49
+ "dependencies": {
50
+ "cheerio": "^1.0.0",
51
+ "effect": "^3.10.4",
52
+ "zod": "^3.23.8"
53
+ },
54
+ "scripts": {
55
+ "build": "tsup",
56
+ "ci": "npm run build && npm run check-format && npm run check-exports && npm run lint && npm run test",
57
+ "lint": "tsc",
58
+ "test": "vitest run",
59
+ "format": "prettier --write ./src",
60
+ "check-format": "prettier --check ./src",
61
+ "check-exports": "attw --pack .",
62
+ "local-release": "npm run ci && changeset version && changeset publish"
63
+ }
64
+ }