-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.04 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
{
"name": "@xcrap/factory",
"version": "0.0.4",
"description": "Xcrap Factory is a set of utilities for dynamically creating instances of clients, extractors, and parsing models, making it easier to configure and extend scraping and parsing pipelines.",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/*",
"!/**/__tests__"
],
"scripts": {
"test": "jest",
"build": "tsc"
},
"keywords": [
"web scraping",
"xcrap",
"fcatory"
],
"author": "Marcuth",
"license": "MIT",
"type": "commonjs",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.0.1",
"@xcrap/axios-client": "^0.0.9",
"@xcrap/core": "^0.0.10",
"@xcrap/got-scraping-client": "^0.0.5",
"@xcrap/parser": "^0.2.4",
"@xcrap/puppeteer-client": "^0.1.0",
"@xcrap/puppeteer-extra-client": "^0.0.2",
"jest": "^30.0.0",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"zod": "^4.3.6"
}
}