-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.25 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
{
"name": "streampilot",
"version": "1.0.0",
"description": "A scalable, cloud-native video transcoding system for HLS streaming",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run dev:api\" \"npm run dev:transcoder\"",
"dev:api": "cd api && npm run dev",
"dev:transcoder": "cd hls-transcoder && npm run dev",
"build": "npm run build:api && npm run build:transcoder",
"build:api": "cd api && npm run build",
"build:transcoder": "cd hls-transcoder && npm run build",
"install:all": "npm install && cd api && npm install && cd ../hls-transcoder && npm install",
"docker:build": "cd hls-transcoder && docker build -t streampilot-transcoder .",
"docker:run": "docker run -it --rm streampilot-transcoder"
},
"keywords": [
"video",
"transcoding",
"hls",
"streaming",
"ffmpeg",
"aws",
"s3",
"sqs",
"docker"
],
"author": "Susmit Bhamare",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/susmitbhamare/streampilot.git"
},
"bugs": {
"url": "https://github.com/susmitbhamare/streampilot/issues"
},
"homepage": "https://github.com/susmitbhamare/streampilot#readme"
}