-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.89 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.89 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
75
76
77
78
79
80
81
{
"name": "zerion-cli",
"version": "1.3.0",
"description": "Zerion for AI agents and developers: wallet-analysis skill bundle and a JSON-first CLI.",
"author": "Zerion",
"type": "module",
"bin": {
"zerion": "./cli/zerion.js"
},
"files": [
"cli/zerion.js",
"cli/router.js",
"cli/commands/",
"cli/utils/",
"cli/policies/",
"skills/",
"plugins/",
".agents/",
".claude-plugin/",
".codex-plugin/",
"gemini-extension.json",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --test 'cli/tests/unit/**/*.test.mjs'",
"test:unit": "node --test 'cli/tests/unit/**/*.test.mjs'",
"test:integration": "node --test --test-concurrency=1 'cli/tests/integration/**/*.test.mjs'",
"test:integration:auth": "node --test cli/tests/integration/auth.test.mjs",
"test:all": "node --test 'cli/tests/**/*.test.mjs'",
"prepublishOnly": "npm test"
},
"imports": {
"#zerion/*": "./cli/*",
"#zerion": "./package.json"
},
"engines": {
"node": ">=20"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=20.10.0",
"onFail": "error"
},
"packageManager": {
"name": "npm",
"version": ">=11.10.0",
"onFail": "error"
}
},
"keywords": [
"zerion",
"ai",
"wallet",
"openclaw",
"cli"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zeriontech/zerion-ai.git"
},
"bugs": {
"url": "https://github.com/zeriontech/zerion-ai/issues"
},
"homepage": "https://github.com/zeriontech/zerion-ai#readme",
"license": "MIT",
"dependencies": {
"@open-wallet-standard/core": "^1.2.4",
"@solana/web3.js": "^1.98.4",
"@x402/evm": "^2.6.0",
"@x402/fetch": "^2.6.0",
"@x402/svm": "^2.8.0",
"mppx": "^0.6.2",
"qrcode-terminal": "^0.12.0",
"viem": "^2.0.0"
},
"overrides": {
"uuid": "^14.0.0"
}
}