forked from helson-lin/ffandown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.93 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "ffandown",
"version": "5.0.5",
"description": "ffandown is a m3u8 downloader",
"main": "bootstrap.js",
"bin": "bootstrap.js",
"scripts": {
"start": "node bootstrap.js --debug=true",
"dev": "nodemon",
"clean": "rimraf dist",
"cp": "cp -R package/* ./node_modules/sqlite3/lib/binding/",
"pkg": "pkg ./ --debug=true",
"build": "npm run clean && npm run cp && npm run pkg",
"rmi": "docker rmi h55205l/ffandown:latest",
"build:image": "docker build . -t h55205l/ffandown:latest",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"ffmpeg",
"m3u8",
"live"
],
"author": "heslonlin",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.1",
"colors": "^1.4.0",
"download": "^8.0.0",
"express": "^4.18.2",
"express-ws": "^5.0.2",
"figlet": "^1.6.0",
"fluent-ffmpeg": "^2.1.2",
"fs-extra": "^11.1.0",
"js-yaml": "^4.1.0",
"node-fetch": "2",
"oimi-helper": "^1.3.3",
"pidusage": "^3.0.2",
"request": "^2.88.2",
"sequelize": "^6.31.0",
"sqlite3": "^5.1.6",
"systeminformation": "^5.17.12",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1",
"yamljs": "^0.3.0"
},
"pkg": {
"scripts": [
"index.js",
"bootstrap.js",
"./bin/*.js",
"./bin/utils/*.js"
],
"assets": [
"./public/**/*",
"./public/*",
"./runtime/**/*.js",
"./runtime/**/**/*.js",
"./runtime/*.js",
"node_modules/figlet/fonts/ANSI Shadow.flf",
"node_modules/sqlite3/lib/binding/**/*"
],
"targets": [
"armv7"
],
"outputPath": "dist"
},
"devDependencies": {
"colors": "^1.4.0",
"eslint": "^8.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"pkg": "^5.8.1",
"rimraf": "^4.4.0"
}
}