@phreshos/server 0.1.5 → 0.1.6
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 +3 -3
package/README.md
CHANGED
|
@@ -76,9 +76,9 @@ retained handle. Server and Client handles remain stable for their Process
|
|
|
76
76
|
lifetime. Each Client permanently owns one synchronous `window` capability,
|
|
77
77
|
whose operations address that Client's current live presentation state.
|
|
78
78
|
|
|
79
|
-
Surface presentation
|
|
80
|
-
one live iframe
|
|
81
|
-
`current.
|
|
79
|
+
Local representation and Surface presentation are deliberately absent from the
|
|
80
|
+
Server SDK. They belong to one live iframe and are requested through the
|
|
81
|
+
Client's `current.localWindow`; a Server may coordinate Program state, but it neither
|
|
82
82
|
owns nor controls the resulting desktop material.
|
|
83
83
|
|
|
84
84
|
The package provides two contextual runtime entry points:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@phreshos/server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "The SDK used by a Program's server endpoint.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/main.js",
|
|
@@ -46,10 +46,10 @@
|
|
|
46
46
|
"prepack": "node --run build"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
|
-
"@phreshos/core": "^0.1.
|
|
49
|
+
"@phreshos/core": "^0.1.6"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@phreshos/core": "^0.1.
|
|
52
|
+
"@phreshos/core": "^0.1.6",
|
|
53
53
|
"@types/node": "^26.2.0",
|
|
54
54
|
"typescript": "^6.0.3"
|
|
55
55
|
}
|