@zeke/obsx 0.1.0 → 1.0.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 +3 -3
- package/package.json +5 -3
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 @zeke/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 @zeke/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 @zeke/obsx add-webcam
|
|
48
48
|
```
|
|
49
49
|
|
|
50
50
|
Interactive mode (hit enter to accept defaults):
|
package/package.json
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zeke/obsx",
|
|
3
3
|
"description": "A CLI for OBS",
|
|
4
|
-
"version": "
|
|
5
|
-
"license": "
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": "https://github.com/zeke/obsx",
|
|
6
7
|
"type": "module",
|
|
7
8
|
"bin": {
|
|
8
9
|
"obsx": "./bin/obsx.js"
|
|
@@ -15,7 +16,8 @@
|
|
|
15
16
|
"build": "node ./node_modules/typescript/bin/tsc -p tsconfig.json",
|
|
16
17
|
"prepack": "npm run build",
|
|
17
18
|
"dev": "tsx src/cli.ts",
|
|
18
|
-
"lint": "eslint ."
|
|
19
|
+
"lint": "eslint .",
|
|
20
|
+
"test": "echo yolo-no-tests-yet"
|
|
19
21
|
},
|
|
20
22
|
"publishConfig": {
|
|
21
23
|
"access": "public"
|