-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.23 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.23 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
{
"name": "shinra-proxy",
"version": "0.2.0",
"description": "A modular CORS proxy built with Express and TypeScript, supporting m3u8 and related formats",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "rimraf dist && tsc",
"start": "node dist/index.js",
"lint": "eslint . --ext .ts",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@types/spdy": "^3.4.9",
"compression": "^1.7.4",
"dotenv": "^16.4.0",
"rimraf": "^5.0.10",
"express": "^4.18.2",
"fzstd": "^0.1.1",
"helmet": "^7.1.0",
"hono": "^4.3.0",
"node-cache": "^5.1.2",
"node-fetch": "^3.3.2",
"path": "0.12.7",
"pino": "^8.20.0",
"pino-pretty": "^10.3.0",
"piscina": "^4.9.2",
"spdy": "^4.0.2",
"url": "0.11.4"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/node": "^20.12.0",
"@typescript-eslint/eslint-plugin": "^7.3.0",
"@typescript-eslint/parser": "^7.3.0",
"eslint": "^8.57.0",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "^5.4.0",
"vitest": "^1.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}