@riavzon/bot-detector 1.0.10 → 1.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +5 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -34,12 +34,14 @@ npx @riavzon/bot-detector-create
34
34
  ```
35
35
 
36
36
  This single command installs all dependencies, downloads and compiles every
37
- threat intelligence feed, writes a fully annotated `botDetectorConfig.ts` at
38
- your project root, and creates the database tables, all without any manual
39
- steps. See the
37
+ threat intelligence feed, writes a fully annotated `botDetectorConfig.ts` with
38
+ all 17 checkers at their defaults, a `mainBotDetector.ts` ready-to-run Express
39
+ entry point, and creates the database tables, all without any manual steps. See the
40
40
  [@riavzon/bot-detector-create](https://www.npmjs.com/package/@riavzon/bot-detector-create)
41
41
  package for details.
42
42
 
43
+ It defaults to [better-sqlite3](http://github.com/WiseLibs/better-sqlite3) as the database driver.
44
+
43
45
  ## Manual installation
44
46
 
45
47
  If you prefer to wire things up yourself:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@riavzon/bot-detector",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "type": "module",
5
5
  "main": "./dist/main.cjs",
6
6
  "types": "./dist/main.d.cts",