-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 1.84 KB
/
package.json
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
{
"name": "@tuplo/fletcher",
"description": "Web scraping HTTP request library",
"version": "0.0.0-development",
"repository": "git@github.com:tuplo/fletcher.git",
"author": "Rui Costa",
"license": "MIT",
"keywords": [
"http-client",
"request",
"scraping"
],
"files": [
"dist/**/*"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
".": [
{
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"default": "./dist/index.js"
},
"./dist/index.js"
]
},
"types": "dist/index.d.ts",
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsx sh/build.ts",
"coverage": "tsx sh/coverage.ts",
"dev": "tsx sh/dev.ts",
"format": "prettier --write src",
"lint:ts": "tsc --noEmit",
"lint": "eslint sh/ src/",
"test:ci": "vitest run",
"test": "vitest --watch",
"upgrade": "npm-check-updates -u -x eslint -x cheerio && npm install"
},
"dependencies": {
"@types/cheerio": "0.22.35",
"@types/cookie": "0.6.0",
"@types/retry": "0.12.5",
"axios": "1.7.4",
"cheerio": "1.0.0-rc.12",
"cookie": "0.6.0",
"deepmerge": "4.3.1",
"hpagent": "1.2.0",
"puppeteer-core": "23.0.2",
"retry": "0.13.1"
},
"devDependencies": {
"@tuplo/shell": "1.2.2",
"@types/mime": "4.0.0",
"@types/node": "22.2.0",
"@vitest/coverage-v8": "2.0.5",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-perfectionist": "3.1.3",
"eslint-plugin-unicorn": "55.0.0",
"eslint-plugin-vitest": "0.5.4",
"mime": "4.0.4",
"npm-check-updates": "17.0.6",
"nyc": "17.0.0",
"prettier": "3.3.3",
"tsup": "8.2.4",
"tsx": "4.17.0",
"typescript": "5.5.4",
"typescript-eslint": "8.1.0",
"vitest": "2.0.5"
}
}