-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.95 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.95 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
67
68
69
70
71
72
73
74
{
"name": "@commandlayer/commercial",
"version": "1.1.0",
"description": "Normative commercial schemas and examples for x402-first CommandLayer execution.",
"author": "Greg Soucy <dev@commandlayer.org> (commandlayer.eth)",
"maintainers": [
"Greg Soucy <dev@commandlayer.org> (commandlayer.eth)"
],
"license": "Apache-2.0",
"private": false,
"publishConfig": {
"access": "public"
},
"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-cards",
"agents",
"authorize",
"checkout",
"commercial",
"commandlayer",
"json-schema",
"payments",
"protocol",
"purchase",
"schemas",
"ship",
"verify",
"x402"
],
"files": [
"schemas/v1.1.0/",
"examples/v1.1.0/",
"manifest.json",
"checksums.txt",
"README.md",
"LICENSE",
"index.js"
],
"main": "index.js",
"exports": {
".": "./index.js",
"./manifest.json": "./manifest.json",
"./checksums.txt": "./checksums.txt",
"./schemas/v1.1.0/*": "./schemas/v1.1.0/*",
"./examples/v1.1.0/*": "./examples/v1.1.0/*"
},
"scripts": {
"validate:schemas": "node scripts/validate-all.mjs",
"validate:examples": "node scripts/validate-examples.mjs",
"validate:integrity": "node scripts/validate-integrity.mjs",
"validate:pack": "node scripts/check-packed-surface.mjs",
"validate:all": "npm run validate:schemas && npm run validate:examples && npm run validate:integrity && npm run validate:pack",
"validate": "npm run validate:all",
"generate:checksums": "node scripts/generate-checksums.mjs",
"test": "npm run validate"
},
"devDependencies": {
"ajv": "^8.17.1",
"ajv-errors": "^3.0.0",
"ajv-formats": "^3.0.1"
}
}