jukebox-media-server 0.1.0 → 0.2.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.
- package/README.md +17 -0
- package/bin/jukebox-media-server.js +2 -1
- package/dist/client/assets/{Watch-C2gUX-4m.js → Watch-kJkUCvFd.js} +31 -31
- package/dist/client/assets/index-1v1BzSVv.js +56 -0
- package/dist/client/assets/index-FPcl2l8F.css +1 -0
- package/dist/client/assets/workbox-window.prod.es5-BIl4cyR9.js +2 -0
- package/dist/client/index.html +24 -4
- package/dist/client/{images/site.webmanifest → manifest.webmanifest} +9 -6
- package/dist/client/offline.html +107 -0
- package/dist/client/sw.js +1 -0
- package/dist/client/workbox-d3da0cfa.js +1 -0
- package/dist/server/index.js +1258 -39
- package/drizzle/0001_steady_puma.sql +65 -65
- package/drizzle/0002_sloppy_betty_ross.sql +8 -8
- package/drizzle/0003_public_speedball.sql +42 -0
- package/drizzle/0004_motionless_bug.sql +13 -0
- package/drizzle/meta/0002_snapshot.json +591 -591
- package/drizzle/meta/0003_snapshot.json +804 -0
- package/drizzle/meta/0004_snapshot.json +880 -0
- package/drizzle/meta/_journal.json +41 -27
- package/package.json +32 -2
- package/dist/client/assets/index-D_um8N7Q.js +0 -52
- package/dist/client/assets/index-DfXUcX5G.css +0 -1
|
@@ -1,27 +1,41 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": "7",
|
|
3
|
-
"dialect": "sqlite",
|
|
4
|
-
"entries": [
|
|
5
|
-
{
|
|
6
|
-
"idx": 0,
|
|
7
|
-
"version": "6",
|
|
8
|
-
"when": 1767381734633,
|
|
9
|
-
"tag": "0000_minor_toad",
|
|
10
|
-
"breakpoints": true
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
"idx": 1,
|
|
14
|
-
"version": "6",
|
|
15
|
-
"when": 1776075541910,
|
|
16
|
-
"tag": "0001_steady_puma",
|
|
17
|
-
"breakpoints": true
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
"idx": 2,
|
|
21
|
-
"version": "6",
|
|
22
|
-
"when": 1776086273393,
|
|
23
|
-
"tag": "0002_sloppy_betty_ross",
|
|
24
|
-
"breakpoints": true
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
|
|
1
|
+
{
|
|
2
|
+
"version": "7",
|
|
3
|
+
"dialect": "sqlite",
|
|
4
|
+
"entries": [
|
|
5
|
+
{
|
|
6
|
+
"idx": 0,
|
|
7
|
+
"version": "6",
|
|
8
|
+
"when": 1767381734633,
|
|
9
|
+
"tag": "0000_minor_toad",
|
|
10
|
+
"breakpoints": true
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"idx": 1,
|
|
14
|
+
"version": "6",
|
|
15
|
+
"when": 1776075541910,
|
|
16
|
+
"tag": "0001_steady_puma",
|
|
17
|
+
"breakpoints": true
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"idx": 2,
|
|
21
|
+
"version": "6",
|
|
22
|
+
"when": 1776086273393,
|
|
23
|
+
"tag": "0002_sloppy_betty_ross",
|
|
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
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jukebox-media-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.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,11 +53,40 @@
|
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"better-sqlite3": "^12.5.0",
|
|
56
|
+
"dayjs": "^1.11.20",
|
|
56
57
|
"dotenv": "^17.2.3"
|
|
57
58
|
},
|
|
59
|
+
"optionalDependencies": {
|
|
60
|
+
"@rollup/rollup-darwin-arm64": "4.54.0",
|
|
61
|
+
"@rollup/rollup-darwin-x64": "4.54.0",
|
|
62
|
+
"@rollup/rollup-linux-arm64-gnu": "4.54.0",
|
|
63
|
+
"@rollup/rollup-linux-arm64-musl": "4.54.0",
|
|
64
|
+
"@rollup/rollup-linux-x64-gnu": "4.54.0",
|
|
65
|
+
"@rollup/rollup-linux-x64-musl": "4.54.0",
|
|
66
|
+
"@rollup/rollup-win32-arm64-msvc": "4.54.0",
|
|
67
|
+
"@rollup/rollup-win32-x64-msvc": "4.54.0",
|
|
68
|
+
"@tailwindcss/oxide-darwin-arm64": "4.1.18",
|
|
69
|
+
"@tailwindcss/oxide-darwin-x64": "4.1.18",
|
|
70
|
+
"@tailwindcss/oxide-linux-arm64-gnu": "4.1.18",
|
|
71
|
+
"@tailwindcss/oxide-linux-arm64-musl": "4.1.18",
|
|
72
|
+
"@tailwindcss/oxide-linux-x64-gnu": "4.1.18",
|
|
73
|
+
"@tailwindcss/oxide-linux-x64-musl": "4.1.18",
|
|
74
|
+
"@tailwindcss/oxide-win32-arm64-msvc": "4.1.18",
|
|
75
|
+
"@tailwindcss/oxide-win32-x64-msvc": "4.1.18",
|
|
76
|
+
"lightningcss-darwin-arm64": "1.30.2",
|
|
77
|
+
"lightningcss-darwin-x64": "1.30.2",
|
|
78
|
+
"lightningcss-linux-arm64-gnu": "1.30.2",
|
|
79
|
+
"lightningcss-linux-arm64-musl": "1.30.2",
|
|
80
|
+
"lightningcss-linux-x64-gnu": "1.30.2",
|
|
81
|
+
"lightningcss-linux-x64-musl": "1.30.2",
|
|
82
|
+
"lightningcss-win32-arm64-msvc": "1.30.2",
|
|
83
|
+
"lightningcss-win32-x64-msvc": "1.30.2"
|
|
84
|
+
},
|
|
58
85
|
"devDependencies": {
|
|
59
86
|
"@eslint/js": "^10.0.1",
|
|
60
87
|
"@hono/node-server": "^1.19.14",
|
|
88
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
89
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
61
90
|
"@radix-ui/react-hover-card": "^1.1.15",
|
|
62
91
|
"@radix-ui/react-label": "^2.1.7",
|
|
63
92
|
"@radix-ui/react-select": "^2.2.6",
|
|
@@ -99,6 +128,7 @@
|
|
|
99
128
|
"typescript-eslint": "^8.58.1",
|
|
100
129
|
"video.js": "^8.23.4",
|
|
101
130
|
"vite": "^7.3.0",
|
|
131
|
+
"vite-plugin-pwa": "^1.2.0",
|
|
102
132
|
"vitest": "^4.0.16"
|
|
103
133
|
}
|
|
104
134
|
}
|