diff --git a/Common/package.json b/Common/package.json index c7458464..5691dc4f 100644 --- a/Common/package.json +++ b/Common/package.json @@ -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" + } +} diff --git a/Frontend/library/package.json b/Frontend/library/package.json index 82e26c11..f5a509b4 100644 --- a/Frontend/library/package.json +++ b/Frontend/library/package.json @@ -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" + } +} diff --git a/Frontend/ui-library/package.json b/Frontend/ui-library/package.json index 5136d925..0ff54921 100644 --- a/Frontend/ui-library/package.json +++ b/Frontend/ui-library/package.json @@ -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" + } +} diff --git a/RELEASE_VERSION b/RELEASE_VERSION index 4a36342f..cb2b00e4 100644 --- a/RELEASE_VERSION +++ b/RELEASE_VERSION @@ -1 +1 @@ -3.0.0 +3.0.1 diff --git a/Signalling/package.json b/Signalling/package.json index e4171264..6b153dd1 100644 --- a/Signalling/package.json +++ b/Signalling/package.json @@ -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:epic-fs-routes@1.0.0" - } - }, - "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:epic-fs-routes@1.0.0" + } + }, + "repository": { + "type": "git", + "url": "https://github.com/EpicGames/PixelStreamingInfrastructure.git" + } +}