forked from EpicGamesExt/PixelStreamingInfrastructure
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.6 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.6 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
{
"name": "@epicgames-ps/js-streamer",
"version": "0.0.4",
"description": "A Node JS implementation of a webrtc streamer for testing.",
"main": "dist/cjs/pixelstreamingjsstreamer.js",
"types": "dist/types/pixelstreamingjsstreamer.d.ts",
"module": "dist/esm/pixelstreamingjsstreamer.js",
"scripts": {
"clean": "rimraf ./dist",
"develop": "webpack-dev-server --mode development",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"build": "npm run build:cjs && npm run build:esm && webpack --mode development",
"rebuild": "npm run clean && npm run build",
"lint": "eslint src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Epic Games",
"license": "MIT",
"devDependencies": {
"copy-webpack-plugin": "^12.0.2",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-tsdoc": "^0.4.0",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"rimraf": "^6.0.1",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.1",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@epicgames-ps/lib-pixelstreamingcommon-ue5.5": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/EpicGames/PixelStreamingInfrastructure.git"
}
}