@zeke/obsx 1.0.2 → 1.0.3

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
@@ -7,13 +7,13 @@ A CLI for [OBS](https://obsproject.com/).
7
7
  Run without installing:
8
8
 
9
9
  ```sh
10
- npx obsx <command>
10
+ npx @zeke/obsx <command>
11
11
  ```
12
12
 
13
13
  Install globally:
14
14
 
15
15
  ```sh
16
- npm install -g obsx
16
+ npm install -g @zeke/obsx
17
17
  obsx <command>
18
18
  ```
19
19
 
package/dist/cli.js CHANGED
@@ -17,9 +17,9 @@ Commands:
17
17
  add-webcam Add a webcam input to the current scene
18
18
 
19
19
  Examples:
20
- npx obsx add-images
21
- npx obsx add-images --dir /path/to/images
22
- npx obsx add-webcam --interactive
20
+ obsx add-images
21
+ obsx add-images --dir /path/to/images
22
+ obsx add-webcam --interactive
23
23
  `);
24
24
  }
25
25
  async function run(argv) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@zeke/obsx",
3
3
  "description": "A CLI for OBS",
4
- "version": "1.0.2",
4
+ "version": "1.0.3",
5
5
  "license": "MIT",
6
6
  "repository": "https://github.com/zeke/obsx",
7
7
  "type": "module",