-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.27 KB
/
package.json
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
{
"name": "flixpatrol-top10",
"version": "2.5.2",
"description": "Get top10 list from flixpatrol and upload them to trakt",
"main": "app.js",
"scripts": {
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/app.js",
"start:dev": "nodemon",
"lint": "eslint .",
"lint-and-fix": "eslint . --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"package": "npm run build && rm -rf bin/ && npx ncc build build/app.js -o build/tmp && npx pkg build/tmp/index.js --targets=node18-linux-x64,node18-macos-x64,node18-win-x64 -o bin/flixpatrol-top10"
},
"keywords": [
"Flixpatrol",
"Trakt",
"Top10"
],
"author": "Navino16",
"license": "GPL-3.0",
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/config": "^3.3.5",
"@types/eslint__js": "^8.42.3",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.5.5",
"@vercel/ncc": "^0.38.1",
"eslint": "^9.10.0",
"nodemon": "^3.1.4",
"pkg": "^5.8.1",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0"
},
"dependencies": {
"axios": "^1.7.7",
"config": "^3.3.12",
"file-system-cache": "^2.4.7",
"jsdom": "^25.0.0",
"trakt.tv": "^8.2.0",
"winston": "^3.14.2"
}
}