-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 737 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 737 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": "m3u8proxy",
"version": "1.0.0",
"description": "",
"devDependencies": {
"@types/node": "^18.11.13",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.7",
"copyfiles": "^2.4.1",
"nodemon": "^3.1.4",
"prettier": "2.8.8",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"scripts": {
"start": "node ./src/index.js",
"dev": "nodemon ./src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"axios": "^0.27.2",
"colors": "^1.4.0",
"dotenv": "^16.0.3",
"http-proxy": "^1.18.1",
"proxy-from-env": "^1.1.0"
},
"type": "module",
"keywords": [],
"author": "",
"license": "MIT"
}