@solana-compass/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/README.md CHANGED
@@ -44,7 +44,7 @@ npm install -g @solana-compass/cli
44
44
  Or run without installing:
45
45
 
46
46
  ```bash
47
- npx @solana-compass/cli wallet list
47
+ npx -p @solana-compass/cli sol wallet list
48
48
  ```
49
49
 
50
50
  Requires Node.js >= 20.
package/bin/sol.mjs CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  import { dirname, join } from 'node:path';
3
- import { fileURLToPath } from 'node:url';
3
+ import { fileURLToPath, pathToFileURL } from 'node:url';
4
4
 
5
5
  const __dirname = dirname(fileURLToPath(import.meta.url));
6
- await import(join(__dirname, '..', 'dist', 'index.js'));
6
+ await import(pathToFileURL(join(__dirname, '..', 'dist', 'index.js')).href);
package/dist/index.js CHANGED
@@ -14,7 +14,7 @@ const program = new Command();
14
14
  program
15
15
  .name('sol')
16
16
  .description('Solana CLI for Humans and LLM Agents')
17
- .version('0.1.0')
17
+ .version('0.2.0')
18
18
  .option('--json', 'Output structured JSON')
19
19
  .option('--rpc <url>', 'Override RPC endpoint')
20
20
  .option('--verbose', 'Verbose output')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solana-compass/cli",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "Solana CLI for Humans and LLM Agents",
5
5
  "type": "module",
6
6
  "bin": {