-
Notifications
You must be signed in to change notification settings - Fork 104
/
package.json
45 lines (45 loc) · 1.67 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "@epicgames-ps/lib-pixelstreamingfrontend-ue5.5",
"version": "0.4.5",
"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": "^29.5.14",
"@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": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.3.3",
"ts-jest": "^29.2.5",
"typedoc": "^0.27.4",
"typescript": "^5.0.0"
},
"dependencies": {
"@epicgames-ps/lib-pixelstreamingcommon-ue5.5": "^0.1.4",
"@types/webxr": "^0.5.1",
"sdp": "^3.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/EpicGamesExt/PixelStreamingInfrastructure.git"
},
"author": "Epic Games",
"license": "MIT",
"publishConfig": {
"access": "public"
}
}