-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.45 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
{
"name": "@botblocker/fingerprintjs",
"version": "0.1.0",
"description": "FingerprintJS by BotBlocker: consent-aware browser fingerprinting, bot evidence, and device intelligence for BotBlocker Security integrations.",
"productName": "FingerprintJS by BotBlocker",
"type": "module",
"license": "MIT",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./browser": "./dist/browser/fingerprintjs-botblocker.js",
"./browser.min": "./dist/browser/fingerprintjs-botblocker.min.js",
"./collectors": {
"types": "./dist/collectors.d.ts",
"import": "./dist/collectors.mjs",
"require": "./dist/collectors.cjs"
},
"./policy": {
"types": "./dist/policy.d.ts",
"import": "./dist/policy.mjs",
"require": "./dist/policy.cjs"
},
"./server": {
"types": "./dist/server.d.ts",
"import": "./dist/server.mjs",
"require": "./dist/server.cjs"
},
"./storage": {
"types": "./dist/storage.d.ts",
"import": "./dist/storage.mjs",
"require": "./dist/storage.cjs"
},
"./package.json": "./package.json"
},
"files": [
"CHANGELOG.md",
"CONTRIBUTING.md",
"dist/",
"docs/",
"examples/",
"LICENSE",
"SECURITY.md",
"README.md"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"clean": "node scripts/clean.mjs",
"build": "node scripts/build.mjs",
"prepack": "npm run build",
"prepublishOnly": "npm run verify",
"test": "node --test tests/*.test.mjs",
"test:browser": "playwright test",
"test:coverage": "c8 --all --include=\"src/**/*.js\" --check-coverage --lines=100 --branches=100 --functions=100 node --test tests/*.test.mjs",
"typecheck": "tsc --noEmit",
"check:size": "node scripts/check-size.mjs",
"verify": "npm run build && npm run typecheck && npm run test:coverage && npm run test:browser && npm run check:size"
},
"keywords": [
"fingerprint",
"botblocker",
"bot-detection",
"security",
"browser",
"device-intelligence",
"signals",
"privacy"
],
"engines": {
"node": ">=18"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"c8": "^10.1.3",
"esbuild": "^0.28.0",
"typescript": "^6.0.3"
}
}