forked from apify/apify-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 2.94 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 2.94 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
{
"name": "@systemfsoftware/apify-client",
"version": "2.9.6-patch.1",
"description": "Apify API client for JavaScript",
"type": "module",
"main": "./dist/commonjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/commonjs/index.d.ts",
"browser": "dist/bundle.js",
"unpkg": "dist/bundle.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.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"
],
"tshy": {
"project": "./tsconfig.build.json",
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
}
},
"scripts": {
"build": "npm run clean && tshy && tsx scripts/update-dist-versions.ts",
"prepublishOnly": "(test $CI || (echo \"Publishing is reserved to CI!\"; exit 1))",
"clean": "rimraf dist .tshy-build",
"test": "turbo build && vitest",
"lint": "eslint src test --ext js,jsx,mjs,ts",
"lint:fix": "eslint src test --ext js,jsx,mjs,ts --fix"
},
"dependencies": {
"@apify/consts": "^2.25.0",
"@apify/log": "^2.2.6",
"@crawlee/types": "^3.3.0",
"@effect/schema": "^0.72.2",
"agentkeepalive": "^4.2.1",
"async-retry": "^1.3.3",
"axios": "^1.6.7",
"content-type": "^1.0.5",
"effect": "^3.7.2",
"ow": "^2.0.0",
"type-fest": "^4.0.0"
},
"devDependencies": {
"@apify/eslint-config-ts": "^0.4.0",
"@apify/tsconfig": "^0.1.0",
"@crawlee/puppeteer": "^3.2.2",
"@total-typescript/tsconfig": "^1.0.4",
"@types/async-retry": "^1.4.5",
"@types/content-type": "^1.1.5",
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/node": "^22.5.3",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"babel-loader": "^9.1.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"eslint": "^8.45.0",
"express": "^4.18.2",
"fs-extra": "^11.1.0",
"glob": "^11.0.0",
"process": "^0.11.10",
"puppeteer": "^23.0.0",
"rimraf": "^6.0.1",
"tshy": "^3.0.2",
"tsx": "^4.19.0",
"turbo": "^2.1.1",
"typescript": "^5.5.4",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.0.5"
},
"packageManager": "pnpm@9.9.0+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1"
}