@muhammedaksam/easiarr 1.2.5 → 1.3.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@muhammedaksam/easiarr",
3
- "version": "1.2.5",
3
+ "version": "1.3.5",
4
4
  "description": "TUI tool for generating docker-compose files for the *arr media ecosystem with 41 apps, TRaSH Guides best practices, VPN routing, and Traefik reverse proxy support",
5
5
  "module": "src/index.ts",
6
6
  "type": "module",
@@ -55,19 +55,19 @@
55
55
  "@types/bcrypt": "^6.0.0",
56
56
  "@types/bun": "latest",
57
57
  "@types/jest": "^30.0.0",
58
- "@types/node": "^25.0.5",
58
+ "@types/node": "^25.0.10",
59
59
  "eslint": "^9.39.2",
60
60
  "jest": "^30.2.0",
61
61
  "jiti": "^2.6.1",
62
- "prettier": "^3.7.4",
62
+ "prettier": "^3.8.1",
63
63
  "ts-jest": "^29.4.6",
64
- "typescript-eslint": "^8.52.0"
64
+ "typescript-eslint": "^8.54.0"
65
65
  },
66
66
  "peerDependencies": {
67
67
  "typescript": "^5.9.3"
68
68
  },
69
69
  "dependencies": {
70
- "@opentui/core": "^0.1.72",
70
+ "@opentui/core": "^0.1.75",
71
71
  "bcrypt": "^6.0.0",
72
72
  "socket.io-client": "^4.8.3",
73
73
  "yaml": "^2.8.2"
@@ -59,4 +59,6 @@ export interface AutoSetupOptions {
59
59
  env: Record<string, string>
60
60
  /** Plex authentication token (for Plex-dependent services) */
61
61
  plexToken?: string
62
+ /** List of enabled app IDs (for smart library/config creation) */
63
+ enabledApps?: AppId[]
62
64
  }