@molteee/arena-tools 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +12 -3
package/dist/index.js CHANGED
@@ -25,7 +25,7 @@ const program = new Command();
25
25
  program
26
26
  .name("arena-tools")
27
27
  .description("CLI for the Molteee Gaming Arena on Monad testnet. All output is JSON.")
28
- .version("0.1.0");
28
+ .version("0.1.1");
29
29
  // ═══════════════════════════════════════════════════════════════════════════
30
30
  // READ-ONLY COMMANDS (no PRIVATE_KEY needed)
31
31
  // ═══════════════════════════════════════════════════════════════════════════
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@molteee/arena-tools",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "CLI tool for interacting with the Molteee Gaming Arena on Monad testnet",
5
5
  "type": "module",
6
6
  "bin": {
7
- "arena-tools": "./bin/arena.js"
7
+ "arena-tools": "bin/arena.js"
8
8
  },
9
9
  "main": "./dist/index.js",
10
10
  "scripts": {
@@ -12,7 +12,16 @@
12
12
  "dev": "tsx src/index.ts",
13
13
  "start": "node dist/index.js"
14
14
  },
15
- "keywords": ["monad", "gaming", "arena", "rps", "poker", "auction", "agent", "cli"],
15
+ "keywords": [
16
+ "monad",
17
+ "gaming",
18
+ "arena",
19
+ "rps",
20
+ "poker",
21
+ "auction",
22
+ "agent",
23
+ "cli"
24
+ ],
16
25
  "license": "MIT",
17
26
  "dependencies": {
18
27
  "commander": "^13.1.0",