iosignal-cli 2.1.1 → 2.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.
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2022 Lee Taeo <taeo.mocha@gmail.com>
3
+ Copyright (c) 2025 Taeo Lee <sixgen@gmail.com>
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/bin/io-client.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- import { IOWS, IOCongSocket, ENC_MODE, serverOption } from 'iosignal'
3
+ import { IO, IOCongSocket, ENC_MODE, serverOption } from 'iosignal'
4
4
  import { EventEmitter } from 'events'
5
5
  import readline from 'readline'
6
6
  import tty from 'tty'
@@ -123,7 +123,7 @@ if (connectUrl.indexOf('cong') === 0) {
123
123
  if (!connectUrl.match(/\w+:\/\/.*$/i)) {
124
124
  connectUrl = `ws://${connectUrl}`
125
125
  }
126
- io = new IOWS(connectUrl)
126
+ io = new IO(connectUrl)
127
127
  }
128
128
 
129
129
  if (options.id && options.key) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iosignal-cli",
3
- "version": "2.1.1",
3
+ "version": "2.2.1",
4
4
  "description": "IOSignal server and client CLI program.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -12,15 +12,15 @@
12
12
  "io-keygen": "./bin/io-keygen.js"
13
13
  },
14
14
  "author": {
15
- "name": "Lee Taeo",
16
- "email": "taeo.mocha@gmail.com"
15
+ "name": "Taeo Lee",
16
+ "email": "sixgen@gmail.com"
17
17
  },
18
18
  "license": "MIT",
19
19
  "dependencies": {
20
20
  "boxen": "^8.0.1",
21
21
  "chalk": "^5.3.0",
22
- "commander": "^12.1.0",
23
- "iosignal": "^2.1.0",
22
+ "commander": "^13.1.0",
23
+ "iosignal": "^2.2.1",
24
24
  "redis": "^4.7.0"
25
25
  },
26
26
  "repository": {