hood-cli 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,69 +1,69 @@
1
1
  {
2
- "name": "hood-cli",
3
- "version": "0.1.0",
4
- "description": "The command-line toolkit for Robinhood Chain (chain 4663): instant reads with zero config, guarded writes with a wallet. Prices, portfolios, launches, swaps, transfers — the gh/vercel of Robinhood Chain.",
5
- "keywords": [
6
- "robinhood",
7
- "robinhood-chain",
8
- "cli",
9
- "stock-tokens",
10
- "usdg",
11
- "uniswap",
12
- "chainlink",
13
- "web3",
14
- "viem"
15
- ],
16
- "license": "Apache-2.0",
17
- "author": "nirholas (https://x.com/nichxbt)",
18
- "repository": {
19
- "type": "git",
20
- "url": "git+https://github.com/nirholas/hood-cli.git"
21
- },
22
- "homepage": "https://nirholas.github.io/hood-cli/",
23
- "bugs": {
24
- "url": "https://github.com/nirholas/hood-cli/issues"
25
- },
26
- "type": "module",
27
- "engines": {
28
- "node": ">=20"
29
- },
30
- "bin": {
31
- "hood": "./dist/cli.js",
32
- "hoodc": "./dist/cli.js"
33
- },
34
- "exports": {
35
- "./package.json": "./package.json"
36
- },
37
- "files": [
38
- "dist",
39
- "contracts/ERC20.sol",
40
- "README.md",
41
- "LICENSE"
42
- ],
43
- "scripts": {
44
- "build": "tsup",
45
- "typecheck": "tsc --noEmit",
46
- "test": "vitest run tests/unit",
47
- "e2e": "node scripts/e2e.mjs",
48
- "capture": "node scripts/capture-session.mjs",
49
- "docs:commands": "node scripts/generate-docs.mjs",
50
- "docs:build": "node scripts/build-docs.mjs",
51
- "docs": "npm run capture && npm run docs:commands && npm run docs:build",
52
- "compile-erc20": "node scripts/compile-erc20.mjs",
53
- "prepublishOnly": "npm run build && npm test"
54
- },
55
- "dependencies": {
56
- "commander": "^12.1.0",
57
- "hoodchain": "^0.1.1",
58
- "viem": "^2.55.0",
59
- "ws": "^8.18.0"
60
- },
61
- "devDependencies": {
62
- "@types/node": "^24.0.0",
63
- "@types/ws": "^8.18.0",
64
- "solc": "^0.8.36",
65
- "tsup": "^8.5.0",
66
- "typescript": "^5.9.0",
67
- "vitest": "^3.2.0"
68
- }
2
+ "name": "hood-cli",
3
+ "version": "0.2.0",
4
+ "description": "The command-line toolkit for Robinhood Chain (chain 4663): instant reads with zero config, guarded writes with a wallet. Prices, portfolios, launches, swaps, transfers — the gh/vercel of Robinhood Chain.",
5
+ "keywords": [
6
+ "robinhood",
7
+ "robinhood-chain",
8
+ "cli",
9
+ "stock-tokens",
10
+ "usdg",
11
+ "uniswap",
12
+ "chainlink",
13
+ "web3",
14
+ "viem"
15
+ ],
16
+ "license": "SEE LICENSE IN LICENSE",
17
+ "author": "nirholas (https://x.com/nichxbt)",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/nirholas/hood-cli.git"
21
+ },
22
+ "homepage": "https://nirholas.github.io/hood-cli/",
23
+ "bugs": {
24
+ "url": "https://github.com/nirholas/hood-cli/issues"
25
+ },
26
+ "type": "module",
27
+ "engines": {
28
+ "node": ">=20"
29
+ },
30
+ "bin": {
31
+ "hood": "./dist/cli.js",
32
+ "hoodc": "./dist/cli.js"
33
+ },
34
+ "exports": {
35
+ "./package.json": "./package.json"
36
+ },
37
+ "files": [
38
+ "dist",
39
+ "contracts/ERC20.sol",
40
+ "README.md",
41
+ "LICENSE"
42
+ ],
43
+ "scripts": {
44
+ "build": "tsup",
45
+ "typecheck": "tsc --noEmit",
46
+ "test": "vitest run tests/unit",
47
+ "e2e": "node scripts/e2e.mjs",
48
+ "capture": "node scripts/capture-session.mjs",
49
+ "docs:commands": "node scripts/generate-docs.mjs",
50
+ "docs:build": "node scripts/build-docs.mjs",
51
+ "docs": "npm run capture && npm run docs:commands && npm run docs:build",
52
+ "compile-erc20": "node scripts/compile-erc20.mjs",
53
+ "prepublishOnly": "npm run build && npm test"
54
+ },
55
+ "dependencies": {
56
+ "commander": "^12.1.0",
57
+ "hoodchain": "^0.1.1",
58
+ "viem": "^2.55.0",
59
+ "ws": "^8.18.0"
60
+ },
61
+ "devDependencies": {
62
+ "@types/node": "^24.0.0",
63
+ "@types/ws": "^8.18.0",
64
+ "solc": "^0.8.36",
65
+ "tsup": "^8.5.0",
66
+ "typescript": "^5.9.0",
67
+ "vitest": "^3.2.0"
68
+ }
69
69
  }