-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 4.23 KB
/
Copy pathpackage.json
File metadata and controls
134 lines (134 loc) · 4.23 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "apify",
"version": "3.7.2",
"description": "The scalable web crawling and scraping library for JavaScript/Node.js. Enables development of data extraction and web automation jobs (not only) with headless Chrome and Puppeteer.",
"engines": {
"node": ">=16.0.0"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"keywords": [
"apify",
"headless",
"chrome",
"puppeteer",
"crawler",
"scraper"
],
"author": {
"name": "Apify",
"email": "support@apify.com",
"url": "https://apify.com"
},
"contributors": [
"Jan Curn <jan@apify.com>",
"Marek Trunkat <marek@apify.com>",
"Ondra Urban <ondra@apify.com>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/apify/apify-sdk-js"
},
"bugs": {
"url": "https://github.com/apify/apify-sdk-js/issues"
},
"homepage": "https://docs.apify.com/sdk/js",
"files": [
"dist",
"!dist/tsconfig.build.tsbuildinfo"
],
"scripts": {
"prepare": "husky",
"clean": "rimraf ./dist ./tsconfig.build.tsbuildinfo",
"compile": "tsc -p tsconfig.build.json && gen-esm-wrapper ./dist/index.js ./dist/index.mjs",
"fixApifyExport": "node ./scripts/temp_fix_apify_exports.mjs",
"build": "pnpm clean && pnpm compile && pnpm fixApifyExport",
"prepublishOnly": "pnpm build",
"ci:build": "pnpm build",
"test": "vitest run --silent",
"test:e2e": "pnpm test:e2e:sdk",
"test:e2e:sdk": "pnpm test:e2e:sdk:tarball && node test/e2e/runSdkTests.mjs",
"test:e2e:sdk:tarball": "pnpm build && mv $(pnpm pack | tail -n 1) test/e2e/apify.tgz",
"tsc-check-tests": "tsc --noEmit --project test/tsconfig.json",
"coverage": "vitest --coverage",
"lint": "oxlint --type-aware",
"lint:fix": "oxlint --type-aware --fix",
"format": "oxfmt",
"format:check": "oxfmt --check"
},
"lint-staged": {
"*.{ts,mts,cts,js,mjs,cjs}": [
"oxfmt --write --no-error-on-unmatched-pattern",
"oxlint --type-aware --fix --no-error-on-unmatched-pattern"
]
},
"dependencies": {
"@apify/consts": "^2.51.0",
"@apify/input_secrets": "^1.2.0",
"@apify/log": "^2.4.3",
"@apify/timeout": "^0.3.0",
"@apify/utilities": "^2.13.0",
"@crawlee/core": "^3.14.1",
"@crawlee/types": "^3.14.1",
"@crawlee/utils": "^3.14.1",
"apify-client": "^2.17.0",
"fs-extra": "^11.2.0",
"ow": "^0.28.2",
"semver": "^7.5.4",
"tslib": "^2.6.2",
"ws": "^8.18.0"
},
"devDependencies": {
"@apify/oxlint-config": "^0.2.5",
"@apify/tsconfig": "^0.2.0",
"@commitlint/config-conventional": "^21.0.0",
"@playwright/browser-chromium": "^1.60.0",
"@types/content-type": "^1.1.8",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.0.0",
"@types/semver": "^7.5.8",
"@types/tough-cookie": "^4.0.5",
"@types/ws": "^8.5.12",
"commitlint": "^21.0.0",
"crawlee": "^3.13.5",
"gen-esm-wrapper": "^1.1.3",
"globby": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.0",
"oxfmt": "0.56.0",
"oxlint": "1.71.0",
"oxlint-tsgolint": "0.22.0",
"playwright": "^1.60.0",
"puppeteer": "^25.0.0",
"rimraf": "^6.0.1",
"tsx": "^4.16.5",
"typescript": "~6.0.0",
"vite-tsconfig-paths": "^6.0.0",
"vitest": "^4.0.0"
},
"packageManager": "pnpm@10.33.4",
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "10.33.4",
"onFail": "warn"
}
},
"pnpm": {
"overrides": {
"fast-uri": "^3.1.2",
"qs": "^6.15.2",
"webpack-dev-server": "^5.2.4"
}
}
}