forked from Eltik/M3U8-Proxy
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.24 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
{
"devDependencies": {
"@types/node": "^18.11.13",
"typescript": "^4.9.4",
"ts-node": "^10.9.1",
"copyfiles": "^2.4.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.7",
"prettier": "2.8.8"
},
"name": "m3u8-proxy",
"description": "Proxy m3u8 files through pure JavaScript.",
"version": "0.0.1",
"main": "./built/server.js",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "npm run build:ts",
"build:ts": "npm run lint && tsc --build && npm run copy-files",
"copy-files": "copyfiles -u 1 src/**/*.html src/**/*.txt dist/",
"clean": "tsc --build --clean",
"start": "node ./dist/index.js",
"eslint": "eslint --ext .ts src/** --fix",
"prettier": "prettier --write .",
"lint": "npm run eslint && npm run prettier"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eltik/M3U8-Proxy.git"
},
"author": "eltik",
"license": "ISC",
"bugs": {
"url": "https://github.com/Eltik/M3U8-Proxy/issues"
},
"homepage": "https://github.com/Eltik/M3U8-Proxy#readme",
"dependencies": {
"axios": "^0.27.2",
"colors": "^1.4.0",
"dotenv": "^16.0.3",
"http-proxy": "^1.18.1",
"proxy-from-env": "^1.1.0"
}
}