-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
108 lines (108 loc) · 2.76 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "apify-client",
"version": "2.11.0",
"description": "Apify API client for JavaScript",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"browser": "dist/bundle.js",
"unpkg": "dist/bundle.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": "./dist/bundle.js"
}
},
"keywords": [
"apify",
"api",
"apifier",
"crawler",
"scraper"
],
"author": {
"name": "Apify",
"email": "[email protected]",
"url": "https://apify.com"
},
"contributors": [
"Jan Curn <[email protected]>",
"Marek Trunkát <[email protected]>",
"Ondra Urban <[email protected]>",
"Jakub Drobník <[email protected]>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/apify/apify-client-js"
},
"bugs": {
"url": "https://github.com/apify/apify-client-js/issues"
},
"homepage": "https://docs.apify.com/api/client/js/",
"files": [
"dist",
"!dist/*.tsbuildinfo"
],
"scripts": {
"build": "npm run clean && npm run build:node && npm run build:browser",
"postbuild": "gen-esm-wrapper dist/index.js dist/index.mjs",
"prepublishOnly": "(test $CI || (echo \"Publishing is reserved to CI!\"; exit 1))",
"clean": "rimraf dist",
"test": "npm run build && jest",
"lint": "eslint src test --ext js,jsx,mjs,ts",
"lint:fix": "eslint src test --ext js,jsx,mjs,ts --fix",
"build:node": "tsc",
"build:browser": "webpack"
},
"dependencies": {
"@apify/consts": "^2.25.0",
"@apify/log": "^2.2.6",
"@crawlee/types": "^3.3.0",
"agentkeepalive": "^4.2.1",
"async-retry": "^1.3.3",
"axios": "^1.6.7",
"content-type": "^1.0.5",
"ow": "^0.28.2",
"tslib": "^2.5.0",
"type-fest": "^4.0.0"
},
"devDependencies": {
"@apify/eslint-config-ts": "^0.4.1",
"@apify/tsconfig": "^0.1.0",
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/register": "^7.21.0",
"@crawlee/puppeteer": "^3.2.2",
"@types/async-retry": "^1.4.5",
"@types/content-type": "^1.1.5",
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.4.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"babel-loader": "^9.1.2",
"body-parser": "^1.20.3",
"compression": "^1.7.4",
"eslint": "^8.57.1",
"express": "^4.21.1",
"fs-extra": "^11.1.0",
"gen-esm-wrapper": "^1.1.2",
"jest": "^29.4.3",
"process": "^0.11.10",
"puppeteer": "^23.0.0",
"rimraf": "^6.0.0",
"terser-webpack-plugin": "^5.3.6",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.6.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}