forked from mosheFuks/PixelStreamingInfrastructure
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (49 loc) · 1.92 KB
/
package.json
File metadata and controls
50 lines (49 loc) · 1.92 KB
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
46
47
48
49
{
"name": "@epicgames-ps/lib-pixelstreamingfrontend-ui-ue5.5",
"version": "0.1.0",
"description": "Reference frontend UI library for Unreal Engine 5.5 Pixel Streaming - gives the stock look and feel.",
"main": "dist/lib-pixelstreamingfrontend-ui.js",
"module": "dist/lib-pixelstreamingfrontend-ui.esm.js",
"types": "types/pixelstreamingfrontend-ui.d.ts",
"sideEffects": false,
"scripts": {
"compile": "tsc --build --clean && tsc",
"build": "webpack --config webpack.prod.js",
"build-dev": "webpack --config webpack.dev.js",
"build-all": "cd ../library && npm run build && cd ../ui-library && npm link ../library && webpack --config webpack.prod.js",
"build-dev-all": "cd ../library && npm run build-dev && cd ../ui-library && npm link ../library & webpack --config webpack.dev.js",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"spellcheck": "cspell \"{README.md,.github/*.md,src/**/*.ts}\""
},
"devDependencies": {
"@epicgames-ps/lib-pixelstreamingcommon-ue5.5": "^0.0.14",
"@epicgames-ps/lib-pixelstreamingfrontend-ue5.5": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"cspell": "^4.1.0",
"eslint": "^8.11.0",
"eslint-plugin-tsdoc": "^0.2.17",
"prettier": "2.8.3",
"ts-loader": "^9.4.2",
"typedoc": "^0.23.24",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.1.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.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/EpicGamesExt/PixelStreamingInfrastructure.git"
},
"author": "Epic Games",
"license": "MIT",
"publishConfig": {
"access": "public"
}
}