green-screen-proxy 1.0.0 → 1.0.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/README.md +1 -1
- package/dist/standalone.js +1 -1
- package/dist/standalone.js.map +1 -1
- package/package.json +7 -4
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ npx green-screen-proxy # Start on port 3001
|
|
|
15
15
|
npx green-screen-proxy --mock # Mock mode (no real host needed)
|
|
16
16
|
npx green-screen-proxy --standalone # Proxy + built-in web terminal UI
|
|
17
17
|
npx green-screen-proxy --port 8080 # Custom port
|
|
18
|
-
npx green-screen
|
|
18
|
+
npx green-screen-terminal # Shorthand for --standalone
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
### Mock mode
|
package/dist/standalone.js
CHANGED
package/dist/standalone.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"standalone.js","sourceRoot":"","sources":["../src/standalone.ts"],"names":[],"mappings":";AAEA,
|
|
1
|
+
{"version":3,"file":"standalone.js","sourceRoot":"","sources":["../src/standalone.ts"],"names":[],"mappings":";AAEA,iFAAiF;AACjF,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC;AAClC,MAAM,MAAM,CAAC,UAAU,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "green-screen-proxy",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "WebSocket/REST proxy server for green-screen-react — connects browsers to TN5250, TN3270, VT220, and HP 6530 hosts over TCP",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"green-screen-proxy": "dist/cli.js"
|
|
8
|
-
"green-screen": "dist/standalone.js"
|
|
7
|
+
"green-screen-proxy": "dist/cli.js"
|
|
9
8
|
},
|
|
10
9
|
"main": "dist/index.js",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": "./dist/index.js",
|
|
12
|
+
"./cli": "./dist/cli.js"
|
|
13
|
+
},
|
|
11
14
|
"files": [
|
|
12
15
|
"dist"
|
|
13
16
|
],
|
|
@@ -45,12 +48,12 @@
|
|
|
45
48
|
"url": "https://github.com/visionbridge-solutions/green-screen-react/issues"
|
|
46
49
|
},
|
|
47
50
|
"dependencies": {
|
|
48
|
-
"green-screen-types": "*",
|
|
49
51
|
"cors": "^2.8.5",
|
|
50
52
|
"express": "^4.21.0",
|
|
51
53
|
"ws": "^8.18.0"
|
|
52
54
|
},
|
|
53
55
|
"devDependencies": {
|
|
56
|
+
"green-screen-types": "*",
|
|
54
57
|
"@types/cors": "^2.8.17",
|
|
55
58
|
"@types/express": "^4.17.21",
|
|
56
59
|
"@types/ws": "^8.5.12",
|