-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.66 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "pixelman",
"version": "0.0.5",
"description": "A program for managing and distributing unreal engine pixel streaming signaling servers and distributed rendering instances, supporting real-time start and stop of unreal engine rendering instances, supporting distributed deployment of rendering instances, and unified scheduling and allocation by the manage module.",
"bin": {
"pixelman": "main.js"
},
"scripts": {
"start": "tsx ./src/manage.ts",
"start:render": "tsx ./src/render.ts",
"start:manage": "tsx ./src/manage.ts",
"build": "webpack",
"prepack": "npm run build",
"release": "npx release-it"
},
"author": "yscnysj <yscnysj@gmail.com> (https://github.com/ToyYan)",
"license": "MIT",
"dependencies": {
"commander": "^10.0.1",
"configstore": "^6.0.0",
"cookie": "^0.5.0",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"winston": "^3.8.2",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/configstore": "^6.0.0",
"@types/cookie": "^0.5.1",
"@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17",
"@types/ws": "^8.5.4",
"ts-loader": "^9.4.2",
"tsx": "^3.12.7",
"webpack": "^5.82.1",
"webpack-cli": "^5.1.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"keywords": [
"pixelman",
"Pixel Streaming",
"pixelstreaming",
"pixel-streaming"
],
"main": "main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ToyYan/pixelman.git"
},
"bugs": {
"url": "https://github.com/ToyYan/pixelman/issues"
},
"homepage": "https://github.com/ToyYan/pixelman#readme"
}