-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.82 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
{
"name": "@tindalabs/shield",
"version": "0.1.1",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "eslint 'src/**/*.ts'",
"format": "prettier --write 'src/**/*.ts'",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"prepare": "npm run build",
"examples:install": "cd examples && npm install",
"examples:build": "npm run build && npm run examples:install",
"examples:start": "cd examples && npm run start"
},
"keywords": [
"browser-security",
"tamper-detection",
"devtools-detection",
"automation-detection",
"webdriver",
"headless",
"content-protection",
"fingerprinting",
"opentelemetry",
"typescript",
"frontend-security"
],
"author": "Isonimus",
"license": "MIT",
"homepage": "https://github.com/tindalabs/shield#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tindalabs/shield.git"
},
"bugs": {
"url": "https://github.com/tindalabs/shield/issues"
},
"description": "Browser tamper detection for hostile environments. Detects DevTools, automation drivers, extension injection, and environment spoofing — surfaces findings as structured risk signals, not just boolean flags.",
"devDependencies": {
"@eslint/js": "^9.22.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.9.1",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.0.0",
"prettier": "^3.8.3",
"ts-jest": "^29.4.11",
"typescript": "^5.8.2",
"typescript-eslint": "^8.60.0"
}
}