-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 765 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 765 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": "node-ffmpeg",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "eslint src/** --no-error-on-unmatched-pattern",
"lintfix": "eslint src/** --fix",
"build": "tsc",
"web": "npx http-server .",
"web-live": "npx http-server live/."
},
"author": "",
"license": "ISC",
"dependencies": {
"fluent-ffmpeg": "^2.1.2",
"node-media-server": "^2.6.2"
},
"devDependencies": {
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"dotenv": "^16.0.0",
"esbuild": "^0.17.18",
"eslint": "^8.38.0",
"http-server": "^14.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}