-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.43 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.43 KB
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
{
"name": "ultra-proxy",
"version": "1.0.0",
"description": "High-performance video streaming proxy with advanced features",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"keywords": [
"proxy",
"streaming",
"video",
"m3u8",
"hls",
"performance",
"typescript"
],
"author": "Ultra Proxy Team",
"license": "MIT",
"dependencies": {
"express": "^4.21.2",
"axios": "^1.9.0",
"compression": "^1.7.4",
"helmet": "^7.1.0",
"express-rate-limit": "^7.4.1",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"winston": "^3.15.0",
"node-cache": "^5.1.2",
"uuid": "^10.0.0",
"express-validator": "^7.2.0"
},
"devDependencies": {
"@types/node": "^22.13.10",
"@types/express": "^5.0.0",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/uuid": "^10.0.0",
"@types/jest": "^29.5.14",
"@types/supertest": "^6.0.2",
"typescript": "^5.8.2",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"supertest": "^7.0.0",
"eslint": "^9.17.0",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2"
},
"engines": {
"node": ">=18.0.0"
}
}