-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.11 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.11 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
{
"name": "@xcrap/impit-client",
"version": "0.1.0",
"description": "Xcrap Impit Client is a package within the Xcrap framework that implements an HTTP client using the Impit library.",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/*",
"!/**/__tests__"
],
"scripts": {
"build": "tsc",
"test": "jest"
},
"keywords": [
"web scraping",
"xcrap",
"http client",
"impit"
],
"author": "Marcuth",
"license": "MIT",
"type": "commonjs",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.2.3",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"impit": "^0.10.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Xcrap-Cloud/impit-client.git"
},
"bugs": {
"url": "https://github.com/Xcrap-Cloud/impit-client/issues"
},
"homepage": "https://github.com/Xcrap-Cloud/impit-client#readme",
"peerDependencies": {
"@xcrap/core": "^0.2.3",
"@xcrap/extractor": "^0.3.1"
}
}