@irdk/usbmux 0.2.0 → 0.2.1

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 (3) hide show
  1. package/LICENSE +2 -2
  2. package/README.md +3 -3
  3. package/package.json +12 -6
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2015 Sterling DeMille <sterlingdemille@gmail.com>
3
+ Copyright (c) 2015-2025 Sterling DeMille <sterlingdemille@gmail.com>, Maksim Alzhanov <me@alzhanov.ru>
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy of
6
6
  this software and associated documentation files (the "Software"), to deal in
@@ -17,4 +17,4 @@ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17
17
  FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18
18
  COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
19
  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md CHANGED
@@ -52,7 +52,7 @@ irelay --help
52
52
  ## Module Usage
53
53
 
54
54
  ```javascript
55
- var usbmux = require('usbmux');
55
+ import * as usbmux from 'usbmux';
56
56
 
57
57
  // usbmux.Relay()
58
58
  // usbmux.createListener()
@@ -278,7 +278,7 @@ The `Number` field indicates status. 0 is success, other numbers indicate an err
278
278
 
279
279
  The MIT License (MIT)
280
280
 
281
- Copyright (c) 2015 Sterling DeMille &lt;sterlingdemille@gmail.com&gt;
281
+ Copyright (c) 2015-2025 Sterling DeMille &lt;sterlingdemille@gmail.com&gt;, Maksim Alzhanov &lt;me@alzhanov.ru&gt;
282
282
 
283
283
  Permission is hereby granted, free of charge, to any person obtaining a copy of
284
284
  this software and associated documentation files (the "Software"), to deal in
@@ -295,4 +295,4 @@ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
295
295
  FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
296
296
  COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
297
297
  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
298
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
298
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@irdk/usbmux",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "iOS usbmuxd client library",
5
5
  "main": "./dist/usbmux.cjs",
6
6
  "module": "./dist/usbmux.js",
@@ -39,14 +39,20 @@
39
39
  "ios",
40
40
  "irelay"
41
41
  ],
42
- "author": {
43
- "name": "Sterling DeMille",
44
- "email": "sterlingdemille+npm@gmail.com"
45
- },
42
+ "contributors": [
43
+ {
44
+ "name": "Sterling DeMille",
45
+ "email": "sterlingdemille+npm@gmail.com"
46
+ },
47
+ {
48
+ "name": "Maksim Alzhanov",
49
+ "email": "me@alzhanov.ru"
50
+ }
51
+ ],
46
52
  "license": "MIT",
47
53
  "repository": {
48
54
  "type": "git",
49
- "url": "https://github.com/demille/node-usbmux.git"
55
+ "url": "https://github.com/irdkwmnsb/node-usbmux.git"
50
56
  },
51
57
  "dependencies": {
52
58
  "debug": "^4.3.6",