-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.38 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.38 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
{
"name": "@commandlayer/agent-cards",
"version": "1.1.0",
"description": "CommandLayer Agent Cards: ENS-bound identity and discovery metadata for Commons and Commercial agent verbs.",
"license": "Apache-2.0",
"author": "Gregory Soucy",
"type": "module",
"keywords": [
"agent",
"agents",
"agent-identity",
"agent-cards",
"ai-agents",
"autonomous-agents",
"commandlayer",
"ethereum",
"ens",
"erc8004",
"identity",
"interoperability",
"json-schema",
"machine-intent",
"m2m",
"protocol",
"receipts",
"schemas",
"trustless",
"x402",
"ipfs",
"immutable"
],
"files": [
".well-known/",
"agents/",
"meta/",
"schemas/",
"dist-pin/",
"checksums.txt",
"LICENSE",
"README.md"
],
"scripts": {
"validate": "npm run validate:current && npm run validate:checksums",
"validate:current": "node scripts/validate-cards.mjs --mode=current",
"validate:legacy": "node scripts/validate-cards.mjs --mode=legacy",
"validate:checksums": "node scripts/generate-checksums.mjs --verify",
"validate:release": "npm run validate && node scripts/validate-release.mjs",
"generate:dist-pin": "node scripts/build-dist-pin.mjs"
},
"devDependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"glob": "^11.0.0"
},
"overrides": {
"fast-json-patch": "^3.1.1"
}
}