-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 850 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 850 Bytes
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
{
"name": "@xcrap/axios-client",
"version": "0.0.9",
"description": "Xcrap Axios Client is a package of the Xcrap framework that implements an HTTP client using the Axios library.",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/*",
"!/**/__tests__"
],
"scripts": {
"build": "tsc",
"test": "jest"
},
"keywords": [
"xcrap",
"http client",
"web scraping",
"axios",
"scrapy"
],
"author": "Marcuth",
"license": "MIT",
"type": "commonjs",
"devDependencies": {
"@types/node": "^25.3.0",
"jest": "^30.2.0",
"ts-jest": "^29.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"dependencies": {
"axios": "^1.8.4",
"axios-rate-limit": "^1.4.0"
},
"peerDependencies": {
"@xcrap/core": "*"
}
}