-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 2.44 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 2.44 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@guard0/g0",
"version": "2.0.0",
"description": "Background check for AI agents — discover, assess, and test before you ship",
"type": "module",
"bin": {
"g0": "dist/bin/g0.js"
},
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
}
},
"files": [
"dist",
"templates",
"src/rules/**/*.yaml",
"src/testing/data/**/*.json"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"typecheck": "tsc --noEmit",
"g0": "tsx bin/g0.ts",
"prepublishOnly": "tsup && vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guard0-ai/g0.git"
},
"homepage": "https://guard0.ai/g0",
"bugs": {
"url": "https://github.com/guard0-ai/g0/issues"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"ai",
"agent",
"security",
"assessment",
"scanner",
"owasp",
"owasp-agentic",
"agentic",
"langchain",
"crewai",
"mcp",
"openai",
"vercel-ai",
"bedrock",
"autogen",
"langchain4j",
"spring-ai",
"golang-ai",
"sast",
"dast",
"ai-security",
"agent-security",
"blast-radius",
"ai-bom",
"sbom",
"control-layer",
"prompt-injection",
"adversarial-testing",
"nist-ai-rmf",
"iso-42001",
"eu-ai-act",
"mitre-atlas",
"owasp-llm-top-10",
"ai-agent",
"llm-security",
"llm",
"sarif",
"cyclonedx",
"compliance",
"ai-governance",
"ai-risk",
"rag-security",
"mcp-security",
"devsecops"
],
"author": "Rakshan AI Inc. (dba Guard0)",
"license": "AGPL-3.0-or-later",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"ignore": "^6.0.2",
"ora": "^8.1.0",
"yaml": "^2.5.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsup": "^8.2.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
},
"optionalDependencies": {
"tree-sitter": "0.21.1",
"tree-sitter-go": "0.23.4",
"tree-sitter-java": "0.23.4",
"tree-sitter-javascript": "0.23.1",
"tree-sitter-python": "0.23.4",
"tree-sitter-typescript": "0.23.2"
},
"engines": {
"node": ">=20.0.0"
},
"overrides": {
"esbuild": ">=0.25.0"
}
}