-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.62 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.62 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
{
"name": "@commandlayer/commercial",
"version": "1.0.0",
"description": "Commercial verbs, schemas, and execution contracts for CommandLayer.",
"author": "Greg Soucy <dev@commandlayer.org> (commandlayer.eth)",
"maintainers": [
"Greg Soucy <dev@commandlayer.org> (commandlayer.eth)"
],
"license": "Apache-2.0",
"private": false,
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/commandlayer/protocol-commercial.git"
},
"homepage": "https://commandlayer.org",
"bugs": {
"url": "https://github.com/commandlayer/protocol-commercial/issues"
},
"keywords": [
"agent",
"agents",
"ai-agents",
"autonomous-agents",
"authorize",
"checkout",
"commercial",
"commandlayer",
"ethereum",
"eth",
"erc8004",
"json-schema",
"payments",
"protocol",
"purchase",
"schemas",
"ship",
"verify",
"x402"
],
"files": [
"schemas/",
"examples/",
"checksums.txt",
"manifest.json",
"README.md"
],
"main": "schemas/v1.0.0/index.json",
"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",
"generate:checksums": "node scripts/generate-checksums.mjs schemas/v1.0.0 checksums.txt"
},
"devDependencies": {
"ajv": "^8.17.1",
"ajv-cli": "^5.0.0",
"ajv-errors": "^3.0.0",
"ajv-formats": "^3.0.1"
}
}