-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.38 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
{
"name": "jellyfin-webhook-anilist-scrobbler",
"version": "1.3.0",
"module": "src/cli.ts",
"type": "module",
"scripts": {
"start": "bun run src/cli.ts",
"compile": "mkdir -p bin/ ; bun build src/cli.ts --compile --outfile bin/anilist-scrobbler",
"lint": "bun x --bun eslint --max-warnings=0",
"check": "bun x --bun tsc --noEmit --pretty",
"pretty:check": "bun x --bun prettier --check src/",
"pretty:write": "bun x --bun prettier --write src/",
"postinstall": "bun compile"
},
"bin": {},
"keywords": [],
"author": "sjorge",
"license": "MIT",
"description": "Scrobller watch status to anilist when jellyfin calls this webhook.",
"devDependencies": {
"@eslint/core": "^0.9.1",
"@eslint/js": "^9.33.0",
"@types/bun": "latest",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^22.17.2",
"eslint": "^9.33.0",
"eslint-config-prettier": "^9.1.2",
"typescript-eslint": "^8.39.1"
},
"dependencies": {
"@commander-js/extra-typings": "^12.1.0",
"@iarna/toml": "^2.2.5",
"anilist-node": "^1.14.1",
"axios": "^1.11.0",
"commander": "^12.1.0",
"deepmerge-ts": "^7.1.5",
"typescript-language-server": "^4.4.0"
},
"peerDependencies": {
"typescript": "^5.7.2"
}
}