-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.29 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
{
"name": "@selat-ai/selat-cli",
"version": "0.17.5",
"description": "Setup helper and runner for SELAT agent payments. Bundles the selat-discovery skill and selat-pay as dependencies; checks Circle CLI and config separately.",
"type": "module",
"bin": {
"selat": "./bin/selat.mjs"
},
"scripts": {
"check": "for f in bin/selat.mjs lib/*.mjs lib/commands/*.mjs; do node --check \"$f\" || exit 1; done",
"test": "node --test test/*.test.mjs",
"version": "node scripts/sync-bin-version.mjs && git add bin/selat.mjs",
"start": "node bin/selat.mjs"
},
"dependencies": {
"@selat-ai/selat-discovery": "^0.26.1",
"@selat-ai/selat-pay": "^0.12.0",
"qrcode-generator": "2.0.4"
},
"overrides": {
"ws": "8.21.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"files": [
"bin",
"lib",
"README.md"
],
"keywords": [
"selat",
"selat-cli",
"x402",
"mpp",
"circle",
"circle-gateway",
"agent-payments",
"agentic-commerce",
"ai-agents",
"mcp",
"claude-code",
"usdc",
"stablecoin",
"micropayments",
"self-custody",
"cli"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/SELAT-AI/selat-cli.git"
}
}