forked from Eltik/M3U8-Proxy
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
33 lines (33 loc) · 845 Bytes
/
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
{
"devDependencies": {
"@types/node": "^18.11.13",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"name": "m3u8-proxy",
"description": "Proxy m3u8 files through pure JavaScript.",
"version": "0.0.1",
"main": "./built/server.js",
"scripts": {
"build": "npm run build:ts",
"build:ts": "tsc --build",
"clean": "tsc --build --clean",
"start": "node ./built/server.js",
"start:pm2": "pm2 start \"npm start\" --name M3U8-Proxy"
},
"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"
}
}