-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1.79 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
{
"name": "ffmpeg-over-ip",
"version": "3.0.0",
"description": "Connect to remote ffmpeg servers",
"main": "index.js",
"type": "module",
"bin": {
"ffmpeg-over-ip-client": "./lib/client.js",
"ffmpeg-over-ip-server": "./lib/server.js"
},
"scripts": {
"prepare": "yarn build:client && yarn build:server && yarn build:permissions",
"build:permissions": "chmod +x lib/server.js lib/client.js",
"build:server": "esbuild src/server.ts --platform=node --bundle --outdir=lib",
"watch:server": "esbuild src/server.ts --platform=node --bundle --outdir=lib --watch",
"build:client": "esbuild src/client.ts --platform=node --bundle --outdir=lib",
"watch:client": "esbuild src/client.ts --platform=node --bundle --outdir=lib --watch",
"bin:client": "pkg lib/client.js --out-path=bin/ --targets=latest-alpine-x64,latest-alpine-arm64,latest-linux-x64,latest-linux-arm64,latest-linuxstatic-x64,latest-linuxstatic-arm64,latest-macos-x64,latest-macos-arm64,latest-win-x64,latest-win-arm64",
"bin:server": "pkg lib/server.js --out-path=bin/ --targets=latest-alpine-x64,latest-alpine-arm64,latest-linux-x64,latest-linux-arm64,latest-linuxstatic-x64,latest-linuxstatic-arm64,latest-macos-x64,latest-macos-arm64,latest-win-x64,latest-win-arm64"
},
"author": "steelbrain",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.5.3",
"@types/node": "20",
"esbuild": "^0.20.0",
"pkg": "^5.8.1",
"sb-stream-promise": "^2.0.0",
"strip-json-comments": "^5.0.1",
"typescript": "^5.3.3",
"zod": "^3.22.4"
},
"repository": {
"url": "https://github.com/steelbrain/ffmpeg-over-ip"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}