@truesift/express 0.1.0

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.
package/package.json ADDED
@@ -0,0 +1,60 @@
1
+ {
2
+ "name": "@truesift/express",
3
+ "version": "0.1.0",
4
+ "description": "Server-side TypeScript SDK client for TrueSift human verification API.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "WebDigiTech - Ventsislav Kolev",
8
+ "sideEffects": false,
9
+ "main": "./dist/index.js",
10
+ "types": "./dist/index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/index.d.ts",
14
+ "import": "./dist/index.js",
15
+ "default": "./dist/index.js"
16
+ },
17
+ "./errors": {
18
+ "types": "./dist/errors/index.d.ts",
19
+ "import": "./dist/errors/index.js",
20
+ "default": "./dist/errors/index.js"
21
+ }
22
+ },
23
+ "files": [
24
+ "dist",
25
+ "README.md",
26
+ "CHANGELOG.md",
27
+ "LICENSE"
28
+ ],
29
+ "engines": {
30
+ "node": ">=20.0.0"
31
+ },
32
+ "publishConfig": {
33
+ "access": "public"
34
+ },
35
+ "scripts": {
36
+ "clean": "rm -rf dist coverage",
37
+ "typecheck": "tsc --noEmit",
38
+ "build": "tsup",
39
+ "test": "vitest run",
40
+ "test:watch": "vitest",
41
+ "check": "pnpm typecheck && pnpm test && pnpm build"
42
+ },
43
+ "keywords": [
44
+ "truesift",
45
+ "human-verification",
46
+ "bot-protection",
47
+ "bot-detection",
48
+ "express",
49
+ "node",
50
+ "typescript",
51
+ "server-side",
52
+ "security"
53
+ ],
54
+ "devDependencies": {
55
+ "@types/node": "^20.0.0",
56
+ "tsup": "^8.5.1",
57
+ "typescript": "^6.0.3",
58
+ "vitest": "^4.1.9"
59
+ }
60
+ }