-
Notifications
You must be signed in to change notification settings - Fork 109
/
Copy pathpackage.json
60 lines (60 loc) · 2.22 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
55
56
57
58
59
60
{
"name": "@epicgames-ps/lib-pixelstreamingsignalling-ue5.5",
"version": "2.1.8",
"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": "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 --ext .js,.jsx,.ts,.tsx",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Epic Games",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.13",
"@types/ws": "8.5.13",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"nodemon": "^3.0.3",
"openapi-typescript": "^7.0.0",
"prettier": "3.3.3",
"ts-node": "^10.9.2",
"typedoc": "^0.27.4",
"typedoc-plugin-markdown": "^4.3.2",
"typescript": "^5.0.0"
},
"dependencies": {
"@epicgames-ps/lib-pixelstreamingcommon-ue5.5": "^0.1.7",
"commander": "^12.0.0",
"express": "^4.21.2",
"express-openapi": "^12.1.3",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"hsts": "^2.2.0",
"jsonc": "^2.0.0",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1",
"ws": "^8.16.0"
},
"overrides": {
"express-openapi": {
"fs-routes": "npm:[email protected]"
}
},
"repository": {
"type": "git",
"url": "https://github.com/EpicGames/PixelStreamingInfrastructure.git"
}
}