forked from apify/browser-pool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.07 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
{
"name": "browser-pool",
"version": "3.1.5",
"description": "Rotate multiple browsers using popular automation libraries such as Playwright or Puppeteer.",
"engines": {
"node": ">=15.10.0"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"author": {
"name": "Apify",
"email": "[email protected]",
"url": "https://apify.com"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/apify/browser-pool.git"
},
"bugs": {
"url": "https://github.com/apify/browser-pool/issues"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && node copy-definitions.js",
"postbuild": "gen-esm-wrapper dist/index.js dist/index.mjs",
"prepublishOnly": "npm run build",
"clean": "rimraf dist",
"test": "jest",
"lint": "eslint src test --ext js,jsx,mjs,ts",
"lint:fix": "eslint src test --ext js,jsx,mjs,ts --fix",
"build:watch": "tsc -w",
"build-docs": "npm run build-toc && node docs/build_docs.js",
"build-toc": "markdown-toc docs/README.md -i"
},
"dependencies": {
"@apify/log": "^1.2.0",
"@apify/timeout": "^0.2.1",
"fingerprint-generator": "^1.0.0",
"fingerprint-injector": "^1.0.0",
"lodash.merge": "^4.6.2",
"nanoid": "^3.3.3",
"ow": "^0.27.0",
"p-limit": "^3.1.0",
"quick-lru": "^5.1.1",
"proxy-chain": "^2.0.1",
"tiny-typed-emitter": "^2.1.0",
"tslib": "^2.4.0"
},
"devDependencies": {
"@apify/eslint-config-ts": "^0.2.3",
"@apify/tsconfig": "^0.1.0",
"@types/fs-extra": "^9.0.12",
"@types/jest": "^27.0.1",
"@types/lodash.merge": "^4.6.6",
"@types/node": "^16.6.1",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"fs-extra": "^10.1.0",
"gen-esm-wrapper": "^1.1.3",
"jest": "^27.0.6",
"jsdoc-to-markdown": "^7.0.1",
"markdown-toc": "^1.2.0",
"playwright": "^1.21.1",
"puppeteer": "^13.7.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.4",
"ts-node": "^10.2.0",
"typescript": "^4.6.4"
}
}