-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy pathpackage.json
29 lines (29 loc) · 1.04 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
{
"name": "@epicgames-ps/reference-pixelstreamingfrontend-ue5.5",
"version": "0.0.1",
"description": "",
"main": "./src/player.ts",
"private": true,
"scripts": {
"clean": "rimraf ./dist",
"build": "npx webpack --config webpack.prod.js",
"build:dev": "npx webpack --config webpack.dev.js",
"build:esm": "npx webpack --config webpack.esmodule.js",
"build:prod": "npx webpack --config webpack.prod.js",
"rebuild": "npm run clean && npm run build",
"watch": "webpack --watch --config webpack.dev.js",
"serve": "webpack serve --config webpack.dev.js",
"serve-prod": "webpack serve --config webpack.prod.js"
},
"devDependencies": {
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.3",
"ts-loader": "^9.5.2",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@epicgames-ps/lib-pixelstreamingfrontend-ue5.5": "*",
"@epicgames-ps/lib-pixelstreamingfrontend-ui-ue5.5": "*"
}
}