-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.75 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.75 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
{
"name": "@commandlayer/commons",
"version": "1.0.2",
"description": "ERC-8004 and x402-aligned canonical verbs and strict JSON Schemas for autonomous agents — immutable semantics, trustable receipts, and cross-runtime interoperability.",
"private": false,
"type": "module",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commandlayer/protocol-commons.git"
},
"homepage": "https://commandlayer.org",
"bugs": {
"url": "https://github.com/commandlayer/protocol-commons/issues"
},
"keywords": [
"agent",
"agents",
"ai-agents",
"autonomous-agents",
"commandlayer",
"ens",
"erc8004",
"interoperability",
"json-schema",
"machine-intent",
"m2m",
"protocol",
"schema-validation",
"schemas",
"semantics",
"trustless",
"x402"
],
"files": [
"schemas/",
"examples/",
"checksums.txt",
"manifest.json",
"LICENSE",
"README.md"
],
"devDependencies": {
"ajv": "^8.17.1",
"ajv-errors": "^3.0.0",
"ajv-formats": "^3.0.1"
},
"scripts": {
"validate:schema": "node scripts/ajv-run.mjs",
"validate:schemas": "node scripts/validate-all.mjs",
"validate:examples": "node scripts/validate-examples.mjs",
"validate:all": "npm run validate:schemas && npm run validate:examples",
"validate": "npm run validate:all",
"checksums:gen": "bash scripts/generate-checksums.sh schemas/v1.0.0 checksums.txt",
"checksums:verify": "bash scripts/verify-checksums.sh",
"checksums:dirty": "git diff --exit-code -- checksums.txt",
"prepack": "npm run checksums:gen",
"prepublishOnly": "npm run checksums:gen && npm run checksums:dirty && npm run validate"
}
}