-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy pathpackage.json
44 lines (44 loc) · 1.62 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
{
"name": "@epicgames-ps/lib-pixelstreamingfrontend-ui-ue5.5",
"version": "1.2.0",
"description": "Reference frontend UI library for Unreal Engine 5.5 Pixel Streaming - gives the stock look and feel.",
"main": "dist/cjs/pixelstreamingfrontend-ui.js",
"module": "dist/esm/pixelstreamingfrontend-ui.js",
"types": "dist/types/pixelstreamingfrontend-ui.d.ts",
"sideEffects": false,
"scripts": {
"clean": "rimraf ./dist",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"build": "npm run build:cjs && npm run build:esm",
"rebuild": "npm run clean && npm run build",
"watch": "nodemon -V -d 3 --watch src --watch ../library/dist -e \"ts,js,mjs,cjs,json\" --exec \"npm run build:cjs\"",
"lint": "eslint src",
"spellcheck": "cspell \"{README.md,.github/*.md,src/**/*.ts}\""
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/webxr": "^0.5.21",
"eslint": "^9.20.0",
"nodemon": "^3.1.9",
"rimraf": "^6.0.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0"
},
"dependencies": {
"@epicgames-ps/lib-pixelstreamingfrontend-ue5.5": "^1.1.0",
"@babel/runtime": "^7.26.10",
"jss": "^10.10.0",
"jss-plugin-camel-case": "^10.10.0",
"jss-plugin-global": "^10.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/EpicGamesExt/PixelStreamingInfrastructure.git"
},
"author": "Epic Games",
"license": "MIT",
"publishConfig": {
"access": "public"
}
}