-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 757 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 757 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
{
"name": "redirecterr",
"version": "1.0.0",
"description": "Redirects Overseerr requests to different instances based on filters",
"module": "src/main.ts",
"type": "module",
"private": true,
"scripts": {
"start": "bun src/main.ts",
"dev": "bun --watch src/main.ts",
"test": "bun test"
},
"author": "Patryk Kaczmarek",
"license": "MIT",
"devDependencies": {
"@types/bun": "latest",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.15.19"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"ajv": "^8.17.1",
"js-yaml": "^4.1.0",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1"
}
}