-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.18 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.18 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
{
"name": "ai-trust",
"version": "0.2.21",
"description": "Trust verification CLI for AI packages — check MCP servers, A2A agents, and AI tools before you install",
"homepage": "https://opena2a.org/ai-trust",
"repository": {
"type": "git",
"url": "https://github.com/opena2a-org/ai-trust.git"
},
"type": "module",
"main": "dist/index.js",
"bin": {
"ai-trust": "dist/index.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"lint": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"ai",
"trust",
"security",
"mcp",
"a2a",
"supply-chain",
"cli",
"model-context-protocol",
"ai-agent",
"opena2a"
],
"author": "OpenA2A",
"license": "Apache-2.0",
"dependencies": {
"@opena2a/contribute": "^0.1.0",
"@opena2a/shared": "^0.1.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"hackmyagent": "^0.16.5"
},
"devDependencies": {
"@types/node": "^20.11.0",
"typescript": "^5.3.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}