-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.59 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "xscrape",
"version": "3.0.4",
"description": "A flexible and powerful library designed to extract and transform data from HTML documents using user-defined schemas",
"main": "dist/index.cjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"typings": "dist/index.d.mts",
"files": ["dist"],
"type": "module",
"scripts": {
"build": "tsdown",
"ci": "pnpm run build && pnpm run check && pnpm run typecheck && pnpm run check-exports && pnpm run test",
"typecheck": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"check": "ultracite check",
"fix": "ultracite fix",
"check-exports": "attw --pack .",
"local-release": "pnpm run ci && changeset version && changeset publish",
"release": "pnpm run ci && changeset publish",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"prepare": "lefthook install"
},
"keywords": [
"web-scraping",
"data-extraction",
"automation",
"html-parsing",
"data-transformation",
"user-defined-schemas",
"crawler",
"scraper",
"zod",
"valibot",
"arktype",
"effect-schema",
"standard-schema"
],
"author": "Johnie Hjelm <johnie@hjelm.im>",
"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.18.2",
"@biomejs/biome": "2.4.11",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@types/node": "^25.5.2",
"arktype": "^2.2.0",
"effect": "^3.21.0",
"jsdom": "^29.0.2",
"lefthook": "^2.1.5",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"ultracite": "7.5.6",
"valibot": "^1.3.1",
"vite": "^8.0.7",
"vitepress": "^1.6.4",
"vitest": "^4.1.3",
"zod": "^4.3.6"
},
"dependencies": {
"@standard-schema/spec": "^1.1.0",
"cheerio": "^1.2.0",
"domhandler": "^6.0.1"
}
}