-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 937 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 937 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
32
33
34
{
"name": "mediaset-infinity-downloader",
"version": "1.0.0",
"description": "Enables you to download Mediaset Infinity Episodes.",
"engines": {
"node": ">= 18.12 <19"
},
"devDependencies": {
"@types/node": "~18",
"@typescript-eslint/eslint-plugin": "~5.59",
"eslint": "~8.38",
"eslint-config-prettier": "~8.8",
"prettier": "~2.8",
"ts-node": "^10.9.2",
"typescript": "~5.0"
},
"scripts": {
"start": "ts-node src/autobot.ts",
"monitor": "ts-node src/monitor.ts",
"clean-logs": "powershell -Command \"Remove-Item 'src/executables/Logs/*' -Force -ErrorAction SilentlyContinue\"",
"lint": "eslint . --ext .ts --ext .mts",
"prettier": "prettier --config .prettierrc --write ."
},
"author": "Black2vs2",
"license": "Apache-2.0",
"dependencies": {
"dotenv": "^17.2.3",
"puppeteer": "^24.32.1",
"tslib": "~2.5"
},
"volta": {
"node": "18.12.1"
}
}