-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathpackage.json
54 lines (54 loc) · 2.08 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
46
47
48
49
50
51
52
53
54
{
"name": "@epicgames-ps/lib-pixelstreamingsignalling-ue5.5",
"version": "2.1.11",
"description": "Basic signalling library for developers wishing to build applications that signal a Pixel Streaming application.",
"main": "dist/cjs/pixelstreamingsignalling.js",
"module": "dist/esm/pixelstreamingsignalling.js",
"types": "dist/types/pixelstreamingsignalling.d.ts",
"scripts": {
"clean": "rimraf ./dist",
"build:docs": "echo \"Make sure you're passing the right --gitRemote so the source links are correct!\" && typedoc --tsconfig tsconfig.cjs.json",
"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 ../Common/dist -e \"ts,js,mjs,cjs,json\" --exec \"npm run build:cjs\"",
"lint": "eslint src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Epic Games",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/express": "^5.0.0",
"@types/ws": "^8.5.14",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-tsdoc": "^0.4.0",
"nodemon": "^3.1.9",
"rimraf": "^6.0.1",
"typedoc": "^0.27.7",
"typedoc-plugin-markdown": "^4.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0"
},
"dependencies": {
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"helmet": "^8.0.0",
"hsts": "^2.2.0",
"jsonc": "^2.0.0",
"logform": "^2.7.0",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0",
"ws": "^8.18.0"
},
"peerDependencies": {
"@epicgames-ps/lib-pixelstreamingcommon-ue5.5": "^0.2.9"
},
"repository": {
"type": "git",
"url": "https://github.com/EpicGames/PixelStreamingInfrastructure.git"
}
}