-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.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
{
"name": "apify-actor-utils",
"version": "0.1.0",
"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-projects/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"
}
},
"files": [
"dist/index.js",
"dist/index.js.map",
"dist/index.d.ts",
"dist/index.d.ts.map",
"dist/src"
],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "tsc && node --test dist/test/*.test.js",
"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",
"apify-client": "^2.10.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"
},
"license": "ISC"
}