-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.87 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.87 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
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
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "apify-client",
"version": "2.25.1",
"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",
"./browser": "./dist/bundle.js",
".": {
"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": "support@apify.com",
"url": "https://apify.com"
},
"contributors": [
"Jan Curn <jan@apify.com>",
"Marek Trunkát <marek@apify.com>",
"Ondra Urban <ondra@apify.com>",
"Jakub Drobník <jakub.drobnik@apify.com>"
],
"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": "pnpm clean && pnpm build:node && pnpm 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 tsconfig.tsbuildinfo",
"test": "pnpm build && vitest run",
"test:bundling": "pnpm build && pnpm --prefix=./test/bundling run bundle:all",
"lint": "oxlint --type-aware",
"lint:fix": "oxlint --type-aware --fix",
"tsc-check-tests": "tsc --noEmit --project test/tsconfig.json",
"format": "oxfmt",
"format:check": "oxfmt --check",
"api:extract": "pnpm build && pnpm dlx github:apify/api-extractor-report --packages=. --extract-command='pnpm api:extract'",
"api:check": "pnpm dlx github:apify/api-extractor-report --packages=. --extract-command='pnpm api:extract' --verify",
"build:node": "tsc",
"build:browser": "rsbuild build"
},
"dependencies": {
"@apify/consts": "^3.0.0",
"@apify/log": "^2.5.53",
"@apify/utilities": "^2.35.10",
"@crawlee/types": "^3.18.1",
"ansi-colors": "^4.1.3",
"async-retry": "^1.3.3",
"axios": "^1.20.0",
"content-type": "^1.0.5",
"ow": "^0.28.2",
"proxy-agent": "^6.5.0",
"tslib": "^2.8.1",
"type-fest": "^4.41.0"
},
"devDependencies": {
"@apify/oxlint-config": "^0.3.0",
"@apify/tsconfig": "^0.2.0",
"@crawlee/puppeteer": "^3.18.1",
"@rsbuild/core": "^2.2.1",
"@rsbuild/plugin-node-polyfill": "^1.4.6",
"@rspack/cli": "^2.2.1",
"@rspack/core": "^2.2.1",
"@types/async-retry": "^1.4.9",
"@types/compression": "^1.8.1",
"@types/content-type": "^1.1.9",
"@types/express": "^5.0.6",
"@types/node": "^24.13.3",
"ajv": "^8.20.0",
"body-parser": "^2.3.0",
"compression": "^1.8.1",
"esbuild": "0.28.2",
"express": "^5.2.1",
"gen-esm-wrapper": "^1.1.3",
"oxfmt": "0.66.0",
"oxlint": "1.80.0",
"oxlint-tsgolint": "7.0.2001",
"puppeteer": "^25.9.0",
"rimraf": "^6.1.3",
"rolldown": "^1.2.6",
"typescript": "^6.0.3",
"vitest": "^4.1.11",
"webpack": "^5.110.2",
"webpack-cli": "^7.2.3"
},
"packageManager": "pnpm@10.33.4",
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "10.33.4",
"onFail": "warn"
}
}
}