-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.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
{
"name": "@niksbanna/bot-detector",
"version": "1.1.0",
"description": "Production-grade client-side bot detection system using signal-based scoring",
"main": "dist/bot-detector.cjs.js",
"module": "dist/bot-detector.esm.js",
"browser": "dist/bot-detector.esm.js",
"types": "dist/types.d.ts",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/bot-detector.esm.js",
"require": "./dist/bot-detector.cjs.js",
"default": "./dist/bot-detector.esm.js"
},
"./iife": "./dist/bot-detector.iife.js",
"./iife.min": "./dist/bot-detector.iife.min.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "node esbuild.config.js",
"dev": "node esbuild.config.js --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/",
"prepublishOnly": "npm run build"
},
"keywords": [
"bot-detection",
"anti-bot",
"fingerprinting",
"browser-detection",
"automation-detection",
"security",
"fraud-prevention"
],
"author": "niksbanna",
"license": "MIT",
"devDependencies": {
"esbuild": "^0.25.0",
"vitest": "^3.0.0",
"@vitest/coverage-v8": "^3.0.0",
"happy-dom": "^20.3.0",
"eslint": "^9.18.0"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": ""
}
}