-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathpackage.json
49 lines (49 loc) · 2.2 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
{
"name": "@epicgames-ps/lib-pixelstreamingcommon-ue5.5",
"version": "0.2.9",
"description": "Common utilities library for Unreal Engine 5.5 Pixel Streaming",
"main": "dist/cjs/pixelstreamingcommon.js",
"module": "dist/esm/pixelstreamingcommon.js",
"types": "dist/types/pixelstreamingcommon.d.ts",
"sideEffects": false,
"scripts": {
"clean": "rimraf ./dist",
"build:docs:proto": "docker run --rm -v $(pwd)/docs:/out -v $(pwd)/protobuf:/protos pseudomuto/protoc-gen-doc --doc_opt=markdown,messages.md",
"build:docs:ts": "echo \"Make sure you're passing the right --gitRemote so the source links are correct!\" && typedoc --tsconfig tsconfig.esm.json",
"build:docs": "npm run build:docs:proto && npm run build:docs:ts",
"build:proto": "protoc --experimental_allow_proto3_optional --ts_out src/Messages --proto_path protobuf protobuf/signalling_messages.proto",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"build": "npm run build:proto && npm run build:cjs && npm run build:esm",
"rebuild": "npm run clean && npm run build",
"watch:proto": "nodemon -V -d 3 --watch protobuf/signalling_messages.proto --exec \"npm run build:proto\"",
"watch": "concurrently -k \"npm run watch:proto\" \"tsc --watch --preserveWatchOutput --project tsconfig.cjs.json\"",
"lint": "eslint src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@protobuf-ts/plugin": "^2.9.4",
"concurrently": "^9.1.2",
"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": {
"@protobuf-ts/runtime": "^2.9.4",
"ws": "^8.18.0",
"@types/ws": "^8.5.14"
},
"author": "Epic Games",
"license": "MIT",
"publishConfig": {
"access": "public"
}
}