-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.17 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
{
"name": "radius-cli",
"version": "0.1.4",
"description": "CLI wallet for the Radius network — like cast, with a built-in account",
"type": "module",
"bin": {
"radius-cli": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc -p . && chmod +x dist/index.js",
"dev": "tsc -p . --watch",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"keywords": [
"radius",
"radiustech",
"ethereum",
"evm",
"cli",
"wallet",
"cast",
"rusd",
"sbc"
],
"author": "Anders Brownworth <anders@radiustechnologysystems.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/radiustech/radius-cli.git"
},
"homepage": "https://github.com/radiustech/radius-cli#readme",
"bugs": {
"url": "https://github.com/radiustech/radius-cli/issues"
},
"dependencies": {
"@inquirer/prompts": "^7.0.0",
"commander": "^12.1.0",
"ethers": "^6.13.0",
"viem": "^2.21.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
}
}