-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 893 Bytes
/
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
{
"name": "osc-video-stream-server",
"version": "1.0.0",
"description": "Server that provides a video player website and accepts OSC commands for remotely setting the video file path and playback position.",
"main": "src/main.js",
"bin": "dist/osc-video-stream-server.js",
"scripts": {
"start": "node src/main.js",
"bundle": "webpack --config webpack.config.js",
"build": "webpack --config webpack.config.js && pkg . --out-path dist"
},
"pkg": {
"targets": [
"node18-linux-x64",
"node18-macos-x64",
"node18-win-x64"
]
},
"author": "Trinitou",
"license": "MIT",
"dependencies": {
"express": "^4.21.2",
"fs": "^0.0.1-security",
"node-osc": "^9.1.4",
"osc-video-stream-server": "file:",
"path": "^0.12.7",
"ws": "^8.18.0"
},
"devDependencies": {
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
}
}