-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.26 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.26 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
{
"name": "@apify/actor-utils",
"version": "0.1.9",
"type": "module",
"description": "Wrapper around Actor.pushData that survives dataset schema-validation failures by stripping offending fields and retrying. Callers pass the actual push function as pushFn.",
"repository": {
"type": "git",
"url": "https://github.com/apify/apify-actor-utils.git"
},
"engines": {
"node": ">=22.6.0"
},
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./push-data-with-schema-repair": {
"types": "./dist/src/push-data-with-schema-repair/index.d.ts",
"default": "./dist/src/push-data-with-schema-repair/index.js"
},
"./qc-logger": {
"types": "./dist/src/qc-logger/index.d.ts",
"default": "./dist/src/qc-logger/index.js"
},
"./type-utils": {
"types": "./dist/src/type-utils/index.d.ts",
"default": "./dist/src/type-utils/index.js"
},
"./gteam-internal": {
"types": "./dist/src/gteam-internal/index.d.ts",
"default": "./dist/src/gteam-internal/index.js"
}
},
"files": [
"dist/index.js",
"dist/index.js.map",
"dist/index.d.ts",
"dist/index.d.ts.map",
"dist/src"
],
"typesVersions": {
"*": {
"qc-logger": [
"dist/src/qc-logger/index.d.ts"
],
"type-utils": [
"dist/src/type-utils/index.d.ts"
],
"gteam-internal": [
"dist/src/gteam-internal/index.d.ts"
]
}
},
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run --coverage",
"check:pushdata": "node scripts/check-pushdata.mjs",
"check-unused": "knip",
"ci": "npm run typecheck && npm run lint && npm run format:check && npm run check:pushdata && npm test",
"probe": "node scripts/probe-errors.mjs",
"prepare": "husky .husky || true"
},
"lint-staged": {
"*.js": "eslint",
"*.ts": "eslint",
"*.mjs": "eslint"
},
"devDependencies": {
"@apify/eslint-config": "^1.2.0",
"@apify/tsconfig": "^0.1.2",
"@types/node": "^25.9.1",
"@vitest/coverage-v8": "^4.0.18",
"apify": "3.7.2",
"apify-client": "^2.17.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.7.0",
"husky": "^9.1.7",
"knip": "^5.88.1",
"lint-staged": "^15.5.2",
"prettier": "^3.9.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1",
"vitest": "^4.0.18"
},
"license": "ISC",
"peerDependencies": {
"@apify/log": "^2",
"apify": "^3",
"apify-client": "^2"
},
"peerDependenciesMeta": {
"apify": {
"optional": true
},
"apify-client": {
"optional": true
}
}
}