mirror of
https://github.com/steelbrain/ffmpeg-over-ip.git
synced 2024-10-12 01:34:56 +03:00
38 lines
1.8 KiB
JSON
38 lines
1.8 KiB
JSON
{
|
|
"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": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
}
|