-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.38 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.38 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
{
"name": "fpscanner",
"version": "1.0.5",
"description": "A lightweight browser fingerprinting and bot detection library with encryption, obfuscation, and cross-context validation",
"main": "dist/fpScanner.cjs.js",
"module": "dist/fpScanner.es.js",
"types": "dist/index.d.ts",
"bin": {
"fpscanner": "bin/cli.js"
},
"files": [
"dist",
"src",
"bin",
"scripts"
],
"scripts": {
"build": "vite build && tsc --emitDeclarationOnly",
"build:vite": "vite build",
"build:dev": "node bin/cli.js build --key=dev-key --no-obfuscate",
"build:prod": "node bin/cli.js build",
"build:prod:plain": "node bin/cli.js build --no-obfuscate",
"build:obfuscate": "node bin/cli.js build --key=dev-key",
"watch": "concurrently \"FP_ENCRYPTION_KEY=dev-key vite build --watch\" \"tsc --watch --emitDeclarationOnly\"",
"dev": "vite",
"dev:build": "npm run build:dev && vite",
"dev:obfuscate": "npm run build:obfuscate && vite",
"test": "npm run test:playwright",
"test:vitest": "vitest",
"test:playwright": "npm run build:obfuscate && npx playwright test",
"test:playwright:headed": "npm run build:obfuscate && npx playwright test --headed",
"prepublishOnly": "node scripts/verify-publish.js",
"publish:beta": "node scripts/safe-publish.js beta",
"publish:stable": "node scripts/safe-publish.js stable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antoinevastel/fpscanner.git"
},
"keywords": [
"fingerprinting",
"browser-fingerprint",
"bot-detection",
"automation-detection",
"fraud-detection",
"selenium",
"puppeteer",
"playwright",
"webdriver",
"headless",
"anti-bot",
"device-fingerprint",
"browser-detection",
"security"
],
"author": "antoinevastel <antoine.vastel@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/antoinevastel/fpscanner/issues"
},
"homepage": "https://github.com/antoinevastel/fpscanner",
"dependencies": {
"javascript-obfuscator": "^5.1.0",
"terser": "^5.46.0",
"ua-parser-js": "^0.7.18"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@vitest/ui": "^4.0.16",
"chai": "^4.2.0",
"concurrently": "^9.2.1",
"fpcollect": "^1.0.4",
"mocha": "^11.7.5",
"puppeteer": "^1.9.0",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vitest": "^4.0.16"
}
}