@zeke/obsx 1.0.0 → 1.0.2

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 @zeke/obsx <command>
10
+ npx obsx <command>
11
11
  ```
12
12
 
13
13
  Install globally:
14
14
 
15
15
  ```sh
16
- npm install -g @zeke/obsx
16
+ npm install -g obsx
17
17
  obsx <command>
18
18
  ```
19
19
 
@@ -44,7 +44,7 @@ obsx add-webcam
44
44
  Or without installing:
45
45
 
46
46
  ```sh
47
- npx @zeke/obsx add-webcam
47
+ npx obsx add-webcam
48
48
  ```
49
49
 
50
50
  Interactive mode (hit enter to accept defaults):
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 zeke/obsx add-images
21
- npx zeke/obsx add-images --dir /path/to/images
22
- npx zeke/obsx add-webcam --interactive
20
+ npx obsx add-images
21
+ npx obsx add-images --dir /path/to/images
22
+ npx 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.0",
4
+ "version": "1.0.2",
5
5
  "license": "MIT",
6
6
  "repository": "https://github.com/zeke/obsx",
7
7
  "type": "module",