jukebox-media-server 0.1.1 → 0.3.0

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.
@@ -22,6 +22,55 @@
22
22
  "when": 1776086273393,
23
23
  "tag": "0002_sloppy_betty_ross",
24
24
  "breakpoints": true
25
+ },
26
+ {
27
+ "idx": 3,
28
+ "version": "6",
29
+ "when": 1776285169591,
30
+ "tag": "0003_public_speedball",
31
+ "breakpoints": true
32
+ },
33
+ {
34
+ "idx": 4,
35
+ "version": "6",
36
+ "when": 1776287931154,
37
+ "tag": "0004_motionless_bug",
38
+ "breakpoints": true
39
+ },
40
+ {
41
+ "idx": 5,
42
+ "version": "6",
43
+ "when": 1776364767918,
44
+ "tag": "0005_settings_table",
45
+ "breakpoints": true
46
+ },
47
+ {
48
+ "idx": 6,
49
+ "version": "6",
50
+ "when": 1776366140436,
51
+ "tag": "0006_watch_progress_cascade",
52
+ "breakpoints": true
53
+ },
54
+ {
55
+ "idx": 7,
56
+ "version": "6",
57
+ "when": 1776367433841,
58
+ "tag": "0007_scan_jobs",
59
+ "breakpoints": true
60
+ },
61
+ {
62
+ "idx": 8,
63
+ "version": "6",
64
+ "when": 1776369000000,
65
+ "tag": "0008_search_fts",
66
+ "breakpoints": true
67
+ },
68
+ {
69
+ "idx": 9,
70
+ "version": "6",
71
+ "when": 1776370000000,
72
+ "tag": "0009_subtitles",
73
+ "breakpoints": true
25
74
  }
26
75
  ]
27
76
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jukebox-media-server",
3
- "version": "0.1.1",
3
+ "version": "0.3.0",
4
4
  "description": "Self-hosted media server with a Netflix-style interface for browsing and streaming your personal movie and TV show collection.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -41,7 +41,7 @@
41
41
  "db:generate": "drizzle-kit generate",
42
42
  "db:migrate": "tsx src/scripts/migrate.ts",
43
43
  "db:studio": "drizzle-kit studio",
44
- "dev": "tsx src/index.ts",
44
+ "dev": "tsx watch src/index.ts",
45
45
  "format": "prettier --write .",
46
46
  "lint": "eslint src",
47
47
  "lint:fix": "eslint src --fix",
@@ -53,6 +53,8 @@
53
53
  },
54
54
  "dependencies": {
55
55
  "better-sqlite3": "^12.5.0",
56
+ "cmdk": "^1.1.1",
57
+ "dayjs": "^1.11.20",
56
58
  "dotenv": "^17.2.3"
57
59
  },
58
60
  "optionalDependencies": {
@@ -84,6 +86,8 @@
84
86
  "devDependencies": {
85
87
  "@eslint/js": "^10.0.1",
86
88
  "@hono/node-server": "^1.19.14",
89
+ "@radix-ui/react-dialog": "^1.1.15",
90
+ "@radix-ui/react-dropdown-menu": "^2.1.16",
87
91
  "@radix-ui/react-hover-card": "^1.1.15",
88
92
  "@radix-ui/react-label": "^2.1.7",
89
93
  "@radix-ui/react-select": "^2.2.6",
@@ -125,6 +129,7 @@
125
129
  "typescript-eslint": "^8.58.1",
126
130
  "video.js": "^8.23.4",
127
131
  "vite": "^7.3.0",
132
+ "vite-plugin-pwa": "^1.2.0",
128
133
  "vitest": "^4.0.16"
129
134
  }
130
135
  }