-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.02 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.02 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
{
"name": "@nis2shield/react-guard",
"version": "0.2.5",
"description": "Client-side security telemetry and session protection for NIS2 compliance. Part of the NIS2 Shield ecosystem.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nis2shield/react-guard.git"
},
"bugs": {
"url": "https://github.com/nis2shield/react-guard/issues"
},
"homepage": "https://nis2shield.com",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prepublishOnly": "npm run build"
},
"keywords": [
"react",
"nis2",
"security",
"telemetry",
"gdpr",
"audit",
"compliance",
"session",
"encryption",
"middleware",
"siem",
"forensic",
"idle-detection",
"error-boundary",
"cybersecurity",
"auto-logout",
"session-timeout",
"tab-napping",
"enterprise"
],
"author": "Fabrizio Di Priamo <fabrizio.di.priamo@gmail.com>",
"license": "MIT",
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@nis2shield/core": "../nis2shield_frontend/packages/core"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^14.0.0",
"@types/node": "^20.0.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.3",
"jsdom": "^22.1.0",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-dts": "^3.3.1",
"vitest": "^0.33.0"
}
}