-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.24 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "trustvector",
"version": "1.0.0",
"description": "Guard0 TrustVector: Agentic AI security framework for evaluating AI agents, models, and MCPs. AI-SPM and agent security posture management.",
"private": false,
"license": "MIT",
"author": {
"name": "Guard0",
"url": "https://guard0.ai"
},
"homepage": "https://trustvector.guard0.ai",
"repository": {
"type": "git",
"url": "https://github.com/Guard0-Security/trust-vector"
},
"keywords": [
"guard0",
"trustvector",
"agentic-ai-security",
"ai-agent-security",
"ai-spm",
"agent-security-posture",
"mcp-security",
"model-context-protocol",
"ai-governance",
"ai-compliance",
"autonomous-ai-security",
"llm-security",
"ai-evaluation",
"ai-trust",
"copilot-studio-security",
"agentforce-security",
"langchain-security",
"crewai-security"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"validate": "tsx scripts/validate-data.ts",
"test": "vitest",
"type-check": "tsc --noEmit",
"generate:data-index": "tsx scripts/generate-data-index.ts",
"predev": "tsx scripts/generate-data-index.ts",
"prebuild": "tsx scripts/generate-data-index.ts",
"pretype-check": "tsx scripts/generate-data-index.ts",
"prevalidate": "tsx scripts/generate-data-index.ts"
},
"dependencies": {
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"html2pdf.js": "^0.14.0",
"lucide-react": "^0.344.0",
"next": "^15.5.19",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"recharts": "^2.15.4",
"tailwind-merge": "^2.2.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.0",
"eslint": "^8.57.0",
"eslint-config-next": "^15.5.19",
"postcss": "^8.5.10",
"tailwindcss": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.7.0",
"typescript": "^5.4.0",
"vitest": "^4.1.8"
},
"engines": {
"node": ">=18.0.0"
},
"overrides": {
"jspdf": "^4.2.1",
"dompurify": "^3.4.0",
"lodash": "^4.18.1",
"next": {
"postcss": "^8.5.10"
}
}
}