-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.09 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": "wield-cli",
"version": "0.1.2",
"description": "CLI for the Wield vault protocol - agent-managed allocation for tokenized real-world assets on Robinhood Chain.",
"keywords": [
"rwa",
"vault",
"defi",
"agent",
"robinhood-chain",
"tokenized-equities",
"real-world-assets",
"allocation",
"cli"
],
"author": "Wield",
"license": "MIT",
"homepage": "https://usewield.io",
"repository": {
"type": "git",
"url": "git+https://github.com/useWield/wield-cli.git"
},
"bugs": {
"url": "https://github.com/useWield/wield-cli/issues"
},
"type": "module",
"bin": {
"wield": "wield"
},
"files": [
"wield.js",
"src/",
"package.json",
"tsconfig.json",
"README.md",
"bun.lock",
".env.example"
],
"engines": {
"bun": ">=1.1.0"
},
"scripts": {
"dev": "bun run src/bin.ts",
"cli": "bun run src/bin.ts",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"viem": "^2.21.0"
},
"devDependencies": {
"@types/bun": "^1.1.13",
"typescript": "^5.5.0"
}
}