-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 991 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 991 Bytes
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
{
"name": "@tensorworks/libspsfrontend",
"version": "0.3.3",
"description": "The Scalable Pixel Streaming Frontend Library consuming Epic Games' Pixel Streaming Frontend",
"main": "dist/libspsfrontend.min.js",
"module": "dist/libspsfrontend.esm.js",
"types": "types/index.d.ts",
"scripts": {
"build-prod": "npx webpack --config webpack.prod.js",
"build-dev": "npx webpack --config webpack.dev.js",
"watch": "npx webpack --watch",
"serve": "webpack serve"
},
"author": "TensorWorks Pty Ltd",
"license": "MIT",
"dependencies": {
"@epicgames-ps/lib-pixelstreamingfrontend-ue5.2": "^0.5.1",
"@epicgames-ps/lib-pixelstreamingfrontend-ui-ue5.2": "^0.4.0"
},
"devDependencies": {
"css-loader": "^6.7.3",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"path": "^0.12.7",
"ts-loader": "^9.4.2",
"webpack": "^5.76.1",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"typescript": "^4.9.4"
}
}