-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
141 lines (141 loc) · 4.37 KB
/
package.json
File metadata and controls
141 lines (141 loc) · 4.37 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "metarr",
"version": "1.0.0",
"description": "Intelligent media metadata manager with automated enrichment, protected asset cache, field-level locking, and disaster recovery. Bridges *arr stack downloaders with Kodi/Jellyfin/Plex media players.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:frontend": "vite build",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"dev:clean": "tsx scripts/dev-cleanup.ts",
"dev:backend": "npm run dev:clean && nodemon --exec tsx src/index.ts",
"dev:frontend": "vite",
"dev:all": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"typecheck": "tsc --noEmit",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"migrate": "tsx src/database/migrate.ts",
"test-media:create": "tsx scripts/createTestMedia.ts"
},
"keywords": [
"metadata",
"media",
"kodi",
"jellyfin",
"plex",
"radarr",
"sonarr",
"lidarr",
"tmdb",
"tvdb",
"fanart"
],
"author": "",
"license": "ISC",
"type": "module",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"devDependencies": {
"@playwright/test": "^1.56.0",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/postcss": "^4.1.13",
"@tanstack/react-query-devtools": "^5.90.2",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/minimatch": "^5.1.2",
"@types/morgan": "^1.9.10",
"@types/node": "^24.5.2",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.15.5",
"@types/react-window": "^1.8.8",
"@types/supertest": "^6.0.3",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.21",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"sqlite": "^5.1.1",
"supertest": "^7.1.4",
"tailwindcss": "^4.1.13",
"ts-jest": "^29.4.4",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"typescript": "^5.9.2",
"vite": "^6.3.6"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.0.1",
"@fortawesome/free-solid-svg-icons": "^7.0.1",
"@fortawesome/react-fontawesome": "^3.0.2",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.90.2",
"@types/fs-extra": "^11.0.4",
"@types/multer": "^2.0.0",
"@types/react": "^19.1.15",
"@types/react-dom": "^19.1.9",
"@types/react-router-dom": "^5.3.3",
"@types/ws": "^8.18.1",
"axios": "^1.12.2",
"cheerio": "^1.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"fs-extra": "^11.3.2",
"fuse.js": "^7.1.0",
"helmet": "^8.1.0",
"lucide-react": "^0.545.0",
"minimatch": "^10.0.3",
"morgan": "^1.10.1",
"multer": "^2.0.2",
"mysql2": "^3.15.1",
"next-themes": "^0.4.6",
"node-cron": "^4.2.1",
"pg": "^8.16.3",
"phash-imagemagick": "^1.0.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-router-dom": "^7.9.3",
"react-window": "^2.2.0",
"sharp": "^0.34.4",
"sonner": "^2.0.7",
"sqlite3": "^5.1.7",
"tailwind-merge": "^3.3.1",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0",
"ws": "^8.18.3",
"xml2js": "^0.6.2",
"youtube-dl-exec": "^3.0.27",
"zod": "^4.1.12"
}
}