@tamasno1/safari-cli 0.0.2 → 0.0.4

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/README.md +6 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # safari-cli
2
2
 
3
+ [![npm](https://img.shields.io/npm/v/@tamasno1/safari-cli)](https://www.npmjs.com/package/@tamasno1/safari-cli)
4
+
3
5
  A command-line tool to control Safari on macOS via WebDriver. No MCP server needed — just a standalone CLI.
4
6
 
5
7
  Talks directly to `safaridriver` (built into macOS) using the W3C WebDriver protocol. Session state is persisted to `~/.safari-cli/session.json` so commands work across terminal invocations.
@@ -16,13 +18,11 @@ Talks directly to `safaridriver` (built into macOS) using the W3C WebDriver prot
16
18
  ## Install
17
19
 
18
20
  ```bash
19
- # From this directory
20
- npm install
21
- npm run build
22
- npm link # makes `safari-cli` available globally
21
+ # Run directly with npx (no install needed)
22
+ npx @tamasno1/safari-cli <command>
23
23
 
24
- # Or run directly
25
- node dist/cli.js <command>
24
+ # Or install globally from npm
25
+ npm install -g @tamasno1/safari-cli
26
26
  ```
27
27
 
28
28
  ## Quick Start
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamasno1/safari-cli",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "CLI tool to control Safari browser on macOS via WebDriver",
5
5
  "type": "module",
6
6
  "main": "dist/cli.js",