-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 927 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 927 Bytes
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
{
"name": "validate-a2a",
"version": "2.6.0",
"description": "GitHub Action to validate A2A protocol agent cards with three-dimensional scoring",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts -o dist --source-map --license licenses.txt",
"build:test": "tsc -p tsconfig.test.json",
"test": "npm run build:test && node --test tests/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/capiscio/validate-a2a.git"
},
"keywords": [
"a2a",
"validation",
"github-action",
"agent-card",
"ai-agents"
],
"author": "Capiscio Team",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.1",
"@actions/tool-cache": "^2.0.2"
},
"devDependencies": {
"@types/node": "^24.6.2",
"@vercel/ncc": "^0.38.4",
"typescript": "^5.9.3"
}
}