xshell 1.1.0 → 1.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xshell",
3
- "version": "1.1.000",
3
+ "version": "1.1.2",
4
4
  "type": "module",
5
5
  "main": "./index.js",
6
6
  "bin": {
@@ -57,9 +57,9 @@
57
57
  "@svgr/webpack": "^8.1.0",
58
58
  "@types/sass-loader": "^8.0.9",
59
59
  "@types/ws": "^8.5.13",
60
- "@typescript-eslint/eslint-plugin": "^8.17.0",
61
- "@typescript-eslint/parser": "^8.17.0",
62
- "@typescript-eslint/utils": "^8.17.0",
60
+ "@typescript-eslint/eslint-plugin": "^8.18.0",
61
+ "@typescript-eslint/parser": "^8.18.0",
62
+ "@typescript-eslint/utils": "^8.18.0",
63
63
  "@xterm/addon-fit": "^0.10.0",
64
64
  "@xterm/addon-web-links": "^0.11.0",
65
65
  "@xterm/addon-webgl": "^0.18.0",
@@ -91,7 +91,7 @@
91
91
  "mime-types": "^2.1.35",
92
92
  "ora": "^8.1.1",
93
93
  "react": "^19.0.0",
94
- "react-i18next": "^15.1.3",
94
+ "react-i18next": "^15.1.4",
95
95
  "react-object-model": "^1.2.20",
96
96
  "resolve-path": "^1.4.0",
97
97
  "sass": "^1.82.0",
package/process.d.ts CHANGED
@@ -2,6 +2,7 @@ import { type ChildProcess } from 'child_process';
2
2
  import './prototype.ts';
3
3
  import type { Encoding } from './file.ts';
4
4
  import type { MyProxy } from './net.ts';
5
+ export declare const sea: boolean;
5
6
  export declare const exe_nodejs: string;
6
7
  export declare const platform: NodeJS.Platform;
7
8
  export declare const username: string;
package/process.js CHANGED
@@ -1,7 +1,9 @@
1
1
  import { spawn } from 'child_process';
2
2
  import os from 'os';
3
+ import node_sea from 'node:sea';
3
4
  import "./prototype.js";
4
5
  import { inspect, DecoderStream, filter_values, check } from "./utils.js";
6
+ export const sea = node_sea.isSea();
5
7
  export const exe_nodejs = process.execPath.fp;
6
8
  export const platform = os.platform();
7
9
  export const username = os.userInfo().username;