-
Notifications
You must be signed in to change notification settings - Fork 274
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.85 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
{
"name": "fingerprint-suite",
"private": true,
"version": "2.1.88",
"description": "",
"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/fingerprint-suite"
},
"bugs": {
"url": "https://github.com/apify/fingerprint-suite/issues"
},
"scripts": {
"clean": "turbo run clean",
"build": "turbo run build",
"postbuild": "node ./scripts/typescript_fixes.mjs",
"prerelease": "pnpm build --force && turbo run copy --force --concurrency=1",
"release": "./scripts/publish.sh",
"test": "vitest",
"lint": "eslint && prettier . --check",
"lint:fix": "eslint --fix && prettier . --write",
"buildNetwork": "turbo run build && ./scripts/netgen.sh && turbo run build && pnpm verifyModel",
"verifyModel": "ts-node ./scripts/verify-model.ts",
"benchmark": "ts-node ./test/antibot-services/live-testing/cloudflare.ts"
},
"devDependencies": {
"@apify/eslint-config": "^1.0.0",
"@apify/tsconfig": "^0.1.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.23.0",
"@types/adm-zip": "^0.5.0",
"@types/node": "^24.0.0",
"@types/node-fetch": "^2.6.1",
"@types/puppeteer": "^7.0.0",
"@types/useragent": "^2.3.1",
"browserslist": "^4.28.8",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"fast-csv": "^5.0.0",
"gen-esm-wrapper": "^1.1.3",
"generator-networks-creator": "workspace:*",
"globals": "^17.0.0",
"globby": "^15.0.0",
"husky": "^9.0.0",
"playwright": "^1.51.1",
"playwright-extra": "^4.3.6",
"prettier": "3.8.1",
"puppeteer": "^24.4.0",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"puppeteer-extra-plugin-user-preferences": "^2.4.1",
"rimraf": "^6.0.0",
"semver": "^7.3.8",
"ts-node": "^10.8.0",
"turbo": "^2.9.14",
"typescript": "^5.0.0",
"typescript-eslint": "^8.28.0",
"vite": "^7.3.6",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.10"
},
"overrides": {
"eslint-config-airbnb-base": {
"eslint": "$eslint"
}
},
"packageManager": "pnpm@10.33.4",
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "10.33.4",
"onFail": "warn"
}
}
}