Skip to content

Commit

Permalink
Merge pull request #325 from EpicGamesExt/UE5.5
Browse files Browse the repository at this point in the history
Bring master up to date with 5.5 branch
  • Loading branch information
lukehb authored Nov 24, 2024
2 parents a7e4a3e + ecb547b commit 7ffb4a1
Show file tree
Hide file tree
Showing 5 changed files with 196 additions and 196 deletions.
98 changes: 49 additions & 49 deletions Common/package.json
Original file line number Diff line number Diff line change
@@ -1,49 +1,49 @@
{
"name": "@epicgames-ps/lib-pixelstreamingcommon-ue5.5",
"version": "0.1.0",
"description": "Common utilities library for Unreal Engine 5.5 Pixel Streaming",
"main": "build/commonjs/pixelstreamingcommon.js",
"module": "build/esm/pixelstreamingcommon.js",
"types": "build/types/pixelstreamingcommon.d.ts",
"sideEffects": false,
"scripts": {
"compile": "tsc --project tsconfig.esm.json && tsc --project tsconfig.cjs.json",
"build": "rimraf ./build && npm run build-proto && npm run compile",
"build-dev": "npm run build-proto && npm run compile",
"build-proto": "protoc --experimental_allow_proto3_optional --ts_out src/Messages --proto_path protobuf protobuf/signalling_messages.proto",
"build-proto-docs": "protoc --doc_out=docs --doc_opt=markdown,messages.md --proto_path protobuf protobuf/signalling_messages.proto",
"build-docs": "typedoc --tsconfig tsconfig.base.json",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/jest": "27.5.1",
"@types/webxr": "^0.5.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"cspell": "^4.1.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^27.5.1",
"jest-environment-jsdom": "27.5.1",
"prettier": "3.3.3",
"rimraf": "^5.0.5",
"ts-jest": "27.1.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.2",
"typedoc": "^0.25.8",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^4.9.4"
},
"author": "Epic Games",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@protobuf-ts/plugin": "^2.9.3",
"@types/ws": "^8.5.10",
"ws": "^8.17.1"
}
}
{
"name": "@epicgames-ps/lib-pixelstreamingcommon-ue5.5",
"version": "0.1.0",
"description": "Common utilities library for Unreal Engine 5.5 Pixel Streaming",
"main": "build/commonjs/pixelstreamingcommon.js",
"module": "build/esm/pixelstreamingcommon.js",
"types": "build/types/pixelstreamingcommon.d.ts",
"sideEffects": false,
"scripts": {
"compile": "tsc --project tsconfig.esm.json && tsc --project tsconfig.cjs.json",
"build": "rimraf ./build && npm run build-proto && npm run compile",
"build-dev": "npm run build-proto && npm run compile",
"build-proto": "protoc --experimental_allow_proto3_optional --ts_out src/Messages --proto_path protobuf protobuf/signalling_messages.proto",
"build-proto-docs": "protoc --doc_out=docs --doc_opt=markdown,messages.md --proto_path protobuf protobuf/signalling_messages.proto",
"build-docs": "typedoc --tsconfig tsconfig.base.json",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/jest": "27.5.1",
"@types/webxr": "^0.5.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"cspell": "^4.1.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^27.5.1",
"jest-environment-jsdom": "27.5.1",
"prettier": "3.3.3",
"rimraf": "^5.0.5",
"ts-jest": "27.1.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.2",
"typedoc": "^0.25.8",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^4.9.4"
},
"author": "Epic Games",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@protobuf-ts/plugin": "^2.9.3",
"@types/ws": "^8.5.10",
"ws": "^8.17.1"
}
}
90 changes: 45 additions & 45 deletions Frontend/library/package.json
Original file line number Diff line number Diff line change
@@ -1,45 +1,45 @@
{
"name": "@epicgames-ps/lib-pixelstreamingfrontend-ue5.5",
"version": "0.3.0",
"description": "Frontend library for Unreal Engine 5.5 Pixel Streaming",
"main": "dist/commonjs/pixelstreamingfrontend.js",
"module": "dist/esm/pixelstreamingfrontend.js",
"types": "dist/types/pixelstreamingfrontend.d.ts",
"sideEffects": false,
"scripts": {
"compile": "tsc --project tsconfig.esm.json && tsc --project tsconfig.cjs.json",
"build": "npm run compile",
"build-all": "cd ../../Common && npm install && npm run build && cd ../Frontend/library && npm install && npm run build",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "jest --detectOpenHandles --coverage=true",
"spellcheck": "cspell \"{README.md,.github/*.md,src/**/*.ts}\""
},
"devDependencies": {
"@types/jest": "27.5.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"cspell": "^4.1.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^27.5.1",
"jest-environment-jsdom": "27.5.1",
"prettier": "3.3.3",
"ts-jest": "27.1.5",
"typedoc": "^0.23.24",
"typescript": "^4.9.4"
},
"dependencies": {
"@types/webxr": "^0.5.1",
"@epicgames-ps/lib-pixelstreamingcommon-ue5.5": "^0.1.0",
"sdp": "^3.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/EpicGamesExt/PixelStreamingInfrastructure.git"
},
"author": "Epic Games",
"license": "MIT",
"publishConfig": {
"access": "public"
}
}
{
"name": "@epicgames-ps/lib-pixelstreamingfrontend-ue5.5",
"version": "0.3.0",
"description": "Frontend library for Unreal Engine 5.5 Pixel Streaming",
"main": "dist/commonjs/pixelstreamingfrontend.js",
"module": "dist/esm/pixelstreamingfrontend.js",
"types": "dist/types/pixelstreamingfrontend.d.ts",
"sideEffects": false,
"scripts": {
"compile": "tsc --project tsconfig.esm.json && tsc --project tsconfig.cjs.json",
"build": "npm run compile",
"build-all": "cd ../../Common && npm install && npm run build && cd ../Frontend/library && npm install && npm run build",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "jest --detectOpenHandles --coverage=true",
"spellcheck": "cspell \"{README.md,.github/*.md,src/**/*.ts}\""
},
"devDependencies": {
"@types/jest": "27.5.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"cspell": "^4.1.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^27.5.1",
"jest-environment-jsdom": "27.5.1",
"prettier": "3.3.3",
"ts-jest": "27.1.5",
"typedoc": "^0.23.24",
"typescript": "^4.9.4"
},
"dependencies": {
"@types/webxr": "^0.5.1",
"@epicgames-ps/lib-pixelstreamingcommon-ue5.5": "^0.1.0",
"sdp": "^3.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/EpicGamesExt/PixelStreamingInfrastructure.git"
},
"author": "Epic Games",
"license": "MIT",
"publishConfig": {
"access": "public"
}
}
88 changes: 44 additions & 44 deletions Frontend/ui-library/package.json
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
{
"name": "@epicgames-ps/lib-pixelstreamingfrontend-ui-ue5.5",
"version": "0.2.0",
"description": "Reference frontend UI library for Unreal Engine 5.5 Pixel Streaming - gives the stock look and feel.",
"main": "dist/commonjs/pixelstreamingfrontend-ui.js",
"module": "dist/esm/pixelstreamingfrontend-ui.esm.js",
"types": "dist/types/pixelstreamingfrontend-ui.d.ts",
"sideEffects": false,
"scripts": {
"compile": "tsc --project tsconfig.esm.json && tsc --project tsconfig.cjs.json",
"build": "npm run compile",
"build-all": "cd ../library && npm install && npm run build-all && cd ../ui-library && npm install && npm run build",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"spellcheck": "cspell \"{README.md,.github/*.md,src/**/*.ts}\""
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"cspell": "^4.1.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"prettier": "3.3.3",
"typedoc": "^0.23.24",
"typescript": "^4.9.4"
},
"dependencies": {
"jss": "^10.9.2",
"jss-plugin-camel-case": "^10.9.2",
"jss-plugin-global": "^10.9.2"
},
"peerDependencies": {
"@epicgames-ps/lib-pixelstreamingfrontend-ue5.5": "^0.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/EpicGamesExt/PixelStreamingInfrastructure.git"
},
"author": "Epic Games",
"license": "MIT",
"publishConfig": {
"access": "public"
}
}
{
"name": "@epicgames-ps/lib-pixelstreamingfrontend-ui-ue5.5",
"version": "0.2.0",
"description": "Reference frontend UI library for Unreal Engine 5.5 Pixel Streaming - gives the stock look and feel.",
"main": "dist/commonjs/pixelstreamingfrontend-ui.js",
"module": "dist/esm/pixelstreamingfrontend-ui.esm.js",
"types": "dist/types/pixelstreamingfrontend-ui.d.ts",
"sideEffects": false,
"scripts": {
"compile": "tsc --project tsconfig.esm.json && tsc --project tsconfig.cjs.json",
"build": "npm run compile",
"build-all": "cd ../library && npm install && npm run build-all && cd ../ui-library && npm install && npm run build",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"spellcheck": "cspell \"{README.md,.github/*.md,src/**/*.ts}\""
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"cspell": "^4.1.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"prettier": "3.3.3",
"typedoc": "^0.23.24",
"typescript": "^4.9.4"
},
"dependencies": {
"jss": "^10.9.2",
"jss-plugin-camel-case": "^10.9.2",
"jss-plugin-global": "^10.9.2"
},
"peerDependencies": {
"@epicgames-ps/lib-pixelstreamingfrontend-ue5.5": "^0.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/EpicGamesExt/PixelStreamingInfrastructure.git"
},
"author": "Epic Games",
"license": "MIT",
"publishConfig": {
"access": "public"
}
}
2 changes: 1 addition & 1 deletion RELEASE_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.0
3.0.1
114 changes: 57 additions & 57 deletions Signalling/package.json
Original file line number Diff line number Diff line change
@@ -1,57 +1,57 @@
{
"name": "@epicgames-ps/lib-pixelstreamingsignalling-ue5.5",
"version": "2.1.0",
"description": "Basic signalling library for developers wishing to build applications that signal a Pixel Streaming application.",
"main": "build/commonjs/pixelstreamingsignalling.js",
"module": "build/esm/pixelstreamingsignalling.js",
"types": "build/types/pixelstreamingsignalling.d.ts",
"scripts": {
"build": "tsc --project tsconfig.esm.json && tsc --project tsconfig.cjs.json",
"build-dev": "npm run build",
"build-all": "rimraf ./build && cd ../Common && npm run build-dev && cd ../Signalling && npm run build-dev",
"build-docs": "typedoc --tsconfig tsconfig.base.json",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Epic Games",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.13",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"nodemon": "^3.0.3",
"openapi-typescript": "^6.7.4",
"prettier": "3.3.3",
"ts-node": "^10.9.2",
"typedoc": "^0.25.8",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@epicgames-ps/lib-pixelstreamingcommon-ue5.5": "^0.1.0",
"commander": "^12.0.0",
"express": "^4.18.2",
"express-openapi": "^12.1.3",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"hsts": "^2.2.0",
"jsonc": "^2.0.0",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1",
"ws": "^8.16.0"
},
"overrides": {
"express-openapi": {
"fs-routes": "npm:[email protected]"
}
},
"repository": {
"type": "git",
"url": "https://github.com/EpicGames/PixelStreamingInfrastructure.git"
}
}
{
"name": "@epicgames-ps/lib-pixelstreamingsignalling-ue5.5",
"version": "2.1.0",
"description": "Basic signalling library for developers wishing to build applications that signal a Pixel Streaming application.",
"main": "build/commonjs/pixelstreamingsignalling.js",
"module": "build/esm/pixelstreamingsignalling.js",
"types": "build/types/pixelstreamingsignalling.d.ts",
"scripts": {
"build": "tsc --project tsconfig.esm.json && tsc --project tsconfig.cjs.json",
"build-dev": "npm run build",
"build-all": "rimraf ./build && cd ../Common && npm run build-dev && cd ../Signalling && npm run build-dev",
"build-docs": "typedoc --tsconfig tsconfig.base.json",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Epic Games",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.13",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"nodemon": "^3.0.3",
"openapi-typescript": "^6.7.4",
"prettier": "3.3.3",
"ts-node": "^10.9.2",
"typedoc": "^0.25.8",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@epicgames-ps/lib-pixelstreamingcommon-ue5.5": "^0.1.0",
"commander": "^12.0.0",
"express": "^4.18.2",
"express-openapi": "^12.1.3",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"hsts": "^2.2.0",
"jsonc": "^2.0.0",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1",
"ws": "^8.16.0"
},
"overrides": {
"express-openapi": {
"fs-routes": "npm:[email protected]"
}
},
"repository": {
"type": "git",
"url": "https://github.com/EpicGames/PixelStreamingInfrastructure.git"
}
}

0 comments on commit 7ffb4a1

Please sign in to comment.