retold-remote 0.0.4 → 0.0.6

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.
Files changed (63) hide show
  1. package/docs/README.md +181 -0
  2. package/docs/_cover.md +14 -0
  3. package/docs/_sidebar.md +10 -0
  4. package/docs/_topbar.md +3 -0
  5. package/docs/audio-viewer.md +133 -0
  6. package/docs/ebook-reader.md +90 -0
  7. package/docs/image-viewer.md +90 -0
  8. package/docs/server-setup.md +262 -0
  9. package/docs/video-viewer.md +134 -0
  10. package/html/docs.html +59 -0
  11. package/package.json +21 -7
  12. package/source/Pict-Application-RetoldRemote.js +143 -2
  13. package/source/RetoldRemote-ExtensionMaps.js +33 -0
  14. package/source/cli/RetoldRemote-Server-Setup.js +82 -67
  15. package/source/cli/commands/RetoldRemote-Command-Serve.js +5 -26
  16. package/source/providers/Pict-Provider-CollectionManager.js +934 -0
  17. package/source/providers/Pict-Provider-FormattingUtilities.js +109 -0
  18. package/source/providers/Pict-Provider-GalleryFilterSort.js +2 -11
  19. package/source/providers/Pict-Provider-GalleryNavigation.js +270 -353
  20. package/source/providers/Pict-Provider-RetoldRemoteIcons.js +52 -0
  21. package/source/providers/Pict-Provider-ToastNotification.js +96 -0
  22. package/source/providers/keyboard-handlers/KeyHandler-AudioExplorer.js +88 -0
  23. package/source/providers/keyboard-handlers/KeyHandler-Gallery.js +190 -0
  24. package/source/providers/keyboard-handlers/KeyHandler-Sidebar.js +65 -0
  25. package/source/providers/keyboard-handlers/KeyHandler-VideoExplorer.js +57 -0
  26. package/source/providers/keyboard-handlers/KeyHandler-Viewer.js +197 -0
  27. package/source/server/RetoldRemote-ArchiveService.js +2 -12
  28. package/source/server/RetoldRemote-AudioWaveformService.js +7 -16
  29. package/source/server/RetoldRemote-CollectionService.js +684 -0
  30. package/source/server/RetoldRemote-EbookService.js +7 -16
  31. package/source/server/RetoldRemote-MediaService.js +3 -14
  32. package/source/server/RetoldRemote-ParimeCache.js +349 -0
  33. package/source/server/RetoldRemote-ThumbnailCache.js +52 -20
  34. package/source/server/RetoldRemote-VideoFrameService.js +7 -15
  35. package/source/views/PictView-Remote-AudioExplorer.js +10 -43
  36. package/source/views/PictView-Remote-CollectionsPanel.js +1087 -0
  37. package/source/views/PictView-Remote-Gallery.js +237 -44
  38. package/source/views/PictView-Remote-ImageViewer.js +1 -34
  39. package/source/views/PictView-Remote-Layout.js +410 -20
  40. package/source/views/PictView-Remote-MediaViewer.js +338 -51
  41. package/source/views/PictView-Remote-SettingsPanel.js +155 -138
  42. package/source/views/PictView-Remote-TopBar.js +615 -14
  43. package/source/views/PictView-Remote-VLCSetup.js +766 -0
  44. package/source/views/PictView-Remote-VideoExplorer.js +20 -54
  45. package/web-application/css/docuserve.css +73 -0
  46. package/web-application/docs/README.md +181 -0
  47. package/web-application/docs/_cover.md +14 -0
  48. package/web-application/docs/_sidebar.md +10 -0
  49. package/web-application/docs/_topbar.md +3 -0
  50. package/web-application/docs/audio-viewer.md +133 -0
  51. package/web-application/docs/ebook-reader.md +90 -0
  52. package/web-application/docs/image-viewer.md +90 -0
  53. package/web-application/docs/server-setup.md +262 -0
  54. package/web-application/docs/video-viewer.md +134 -0
  55. package/web-application/docs.html +59 -0
  56. package/web-application/js/pict-docuserve.min.js +58 -0
  57. package/web-application/js/pict.min.js +2 -2
  58. package/web-application/js/pict.min.js.map +1 -1
  59. package/web-application/retold-remote.js +2558 -439
  60. package/web-application/retold-remote.js.map +1 -1
  61. package/web-application/retold-remote.min.js +41 -11
  62. package/web-application/retold-remote.min.js.map +1 -1
  63. package/server.js +0 -43
@@ -0,0 +1,262 @@
1
+ # Server Setup and Docker
2
+
3
+ ## Installation
4
+
5
+ ### From npm
6
+
7
+ ```bash
8
+ npm install -g retold-remote
9
+ ```
10
+
11
+ ### From source
12
+
13
+ ```bash
14
+ git clone <repo-url>
15
+ cd retold-remote
16
+ npm install
17
+ npm run build
18
+ ```
19
+
20
+ The build step bundles the client-side JavaScript with Quackage and copies assets into `web-application/`.
21
+
22
+ ## Running the Server
23
+
24
+ ### CLI Command
25
+
26
+ ```bash
27
+ retold-remote serve [content-path] [options]
28
+ ```
29
+
30
+ Or using the short alias:
31
+
32
+ ```bash
33
+ rr serve /path/to/media
34
+ ```
35
+
36
+ If `content-path` is omitted, the current directory is served.
37
+
38
+ ### Options
39
+
40
+ | Flag | Description | Default |
41
+ |------|-------------|---------|
42
+ | `-p, --port [port]` | Port to listen on | Random 7000-7999 |
43
+ | `-H, --hashed-filenames` | Enable hashed filename mode (hides real paths from browser) | Off |
44
+ | `-c, --cache-path [path]` | Root cache directory | `./dist/retold-cache/` |
45
+ | `--cache-thumbnails [path]` | Override thumbnail cache location | `<cache-root>/thumbnails/` |
46
+ | `--cache-archives [path]` | Override archive extraction cache | `<cache-root>/archives/` |
47
+ | `--cache-video-frames [path]` | Override video frame cache | `<cache-root>/video-frames/` |
48
+ | `--cache-audio-waveforms [path]` | Override audio waveform cache | `<cache-root>/audio-waveforms/` |
49
+
50
+ ### Direct Node.js
51
+
52
+ ```bash
53
+ node server.js [content-path]
54
+ ```
55
+
56
+ Default port is `8086` when using `server.js` directly.
57
+
58
+ ### Environment Variables
59
+
60
+ | Variable | Description | Default |
61
+ |----------|-------------|---------|
62
+ | `PORT` | HTTP port | `8086` (server.js) or random (CLI) |
63
+ | `RETOLD_HASHED_FILENAMES` | Set to `true` to enable hashed filenames | `false` |
64
+
65
+ ### Examples
66
+
67
+ ```bash
68
+ # Serve current directory on port 8086
69
+ node server.js
70
+
71
+ # Serve a specific folder
72
+ node server.js /mnt/nas/media
73
+
74
+ # CLI with custom port
75
+ retold-remote serve /mnt/nas/media -p 3000
76
+
77
+ # Hashed filenames for privacy
78
+ retold-remote serve /mnt/nas/media -H
79
+
80
+ # Custom cache location (useful for Docker volumes)
81
+ retold-remote serve /media -c /cache
82
+ ```
83
+
84
+ ## Configuration
85
+
86
+ ### Settings Persistence
87
+
88
+ User preferences are stored in the browser via `localStorage` under the key `retold-remote-settings`. These include:
89
+
90
+ - Theme selection
91
+ - View mode (grid or list)
92
+ - Thumbnail size (small, medium, large)
93
+ - Gallery filter and sort preferences
94
+ - Show hidden files toggle
95
+ - Autoplay video / audio toggles
96
+ - Image fit mode
97
+ - Sidebar state
98
+ - Filter presets
99
+
100
+ Settings are loaded on page load and saved whenever a preference changes.
101
+
102
+ ### Server Capabilities
103
+
104
+ On startup the server probes for optional tools and reports availability at `GET /api/media/capabilities`. The Settings panel in the UI shows which tools are detected.
105
+
106
+ | Tool | Detection Method | Feature |
107
+ |------|-----------------|---------|
108
+ | **sharp** | `require('sharp')` | Image thumbnail generation |
109
+ | **ImageMagick** | `identify --version` | Fallback image thumbnails |
110
+ | **ffmpeg** | `ffmpeg -version` | Video thumbnails, frame extraction, audio waveforms |
111
+ | **ffprobe** | `ffprobe -version` | Media metadata (duration, dimensions, codec, bitrate) |
112
+ | **VLC** | macOS: `/Applications/VLC.app`; Linux: `vlc --version` | External video playback |
113
+ | **7-Zip** | `7z --help` | Archive browsing (rar, 7z, tar.*) |
114
+ | **ebook-convert** | `ebook-convert --version` (Calibre) | MOBI/AZW to EPUB conversion |
115
+
116
+ Without any optional tools the application still works: images are served directly (no thumbnails), videos play in the browser, and zip/cbz archives use native extraction via yauzl.
117
+
118
+ ### Thumbnail Cache
119
+
120
+ Thumbnails are cached on disk using a SHA-256 hash of `<filepath>:<mtime>:<width>x<height>`. When the source file is modified the mtime changes, invalidating the cache entry automatically.
121
+
122
+ Default location: `./dist/retold-cache/thumbnails/`
123
+
124
+ Default thumbnail size: 200x200, format: webp.
125
+
126
+ Thumbnails are served with `Cache-Control: public, max-age=86400`.
127
+
128
+ ### Hashed Filenames Mode
129
+
130
+ When enabled (`-H` flag or `RETOLD_HASHED_FILENAMES=true`), real file paths are never exposed to the browser. Instead, deterministic 10-character hex hashes derived from SHA-256 are used in URLs and API responses. The same path always produces the same hash across server restarts.
131
+
132
+ ## Docker
133
+
134
+ ### Using the Included Dockerfile
135
+
136
+ A `Dockerfile` is provided in the repository root:
137
+
138
+ ```bash
139
+ docker build -t retold-remote .
140
+ docker run -p 8086:8086 -v /path/to/media:/media retold-remote
141
+ ```
142
+
143
+ ### Inline Dockerfile
144
+
145
+ If you need to create a Dockerfile from scratch, here is a complete working version:
146
+
147
+ ```dockerfile
148
+ FROM node:20-slim
149
+
150
+ # Install optional tools for full functionality
151
+ RUN apt-get update && apt-get install -y --no-install-recommends \
152
+ ffmpeg \
153
+ imagemagick \
154
+ p7zip-full \
155
+ calibre \
156
+ && rm -rf /var/lib/apt/lists/*
157
+
158
+ WORKDIR /app
159
+
160
+ # Copy package files and install dependencies
161
+ COPY package.json package-lock.json ./
162
+ RUN npm ci --omit=dev && npm cache clean --force
163
+
164
+ # Install sharp (optional image processing)
165
+ RUN npm install sharp || true
166
+
167
+ # Copy application source and built assets
168
+ COPY source/ source/
169
+ COPY web-application/ web-application/
170
+ COPY css/ css/
171
+ COPY html/ html/
172
+ COPY server.js ./
173
+
174
+ # Create cache directory
175
+ RUN mkdir -p /cache
176
+
177
+ # Default port
178
+ ENV PORT=8086
179
+
180
+ EXPOSE 8086
181
+
182
+ # Serve /media with cache at /cache
183
+ CMD ["node", "server.js", "/media"]
184
+ ```
185
+
186
+ ### Docker Compose
187
+
188
+ ```yaml
189
+ version: "3.8"
190
+ services:
191
+ retold-remote:
192
+ build: .
193
+ ports:
194
+ - "8086:8086"
195
+ volumes:
196
+ - /path/to/media:/media:ro
197
+ - retold-cache:/cache
198
+ environment:
199
+ - PORT=8086
200
+ restart: unless-stopped
201
+
202
+ volumes:
203
+ retold-cache:
204
+ ```
205
+
206
+ ### Docker Usage Notes
207
+
208
+ - Mount your media folder to `/media` (read-only is fine with `:ro`)
209
+ - Mount a volume to `/cache` for persistent thumbnail and frame caches
210
+ - The `node:20-slim` base keeps the image small while the `apt-get` packages add full media processing
211
+ - `calibre` is the largest optional package; omit it if you do not need MOBI/AZW ebook conversion
212
+ - `sharp` is installed separately because it has native bindings that may fail on some architectures; the `|| true` ensures the build continues without it
213
+
214
+ ### Minimal Dockerfile (No Optional Tools)
215
+
216
+ If you only need basic browsing without thumbnails or media probing:
217
+
218
+ ```dockerfile
219
+ FROM node:20-slim
220
+
221
+ WORKDIR /app
222
+
223
+ COPY package.json package-lock.json ./
224
+ RUN npm ci --omit=dev && npm cache clean --force
225
+
226
+ COPY source/ source/
227
+ COPY web-application/ web-application/
228
+ COPY css/ css/
229
+ COPY html/ html/
230
+ COPY server.js ./
231
+
232
+ ENV PORT=8086
233
+ EXPOSE 8086
234
+
235
+ CMD ["node", "server.js", "/media"]
236
+ ```
237
+
238
+ This produces an image under 200MB. Images display directly (no thumbnails), videos play in the browser, and zip/cbz archives use native extraction.
239
+
240
+ ## Archive Browsing
241
+
242
+ Archives appear as navigable folders in the file browser. Clicking an archive opens it and displays its contents as if they were a regular directory.
243
+
244
+ **Supported formats:**
245
+
246
+ | Format | Tool Required |
247
+ |--------|---------------|
248
+ | `.zip`, `.cbz` | None (native yauzl) |
249
+ | `.7z`, `.rar`, `.tar`, `.tar.gz`, `.tar.bz2`, `.tar.xz`, `.tgz`, `.cbr` | 7-Zip |
250
+
251
+ Files inside archives can be viewed, thumbnailed, and probed just like regular files. Archive contents are extracted to the cache directory on demand.
252
+
253
+ ## VLC Streaming
254
+
255
+ The VLC integration allows streaming media files to a VLC player running on the server machine. Press `v` in the media viewer to send the current file to VLC.
256
+
257
+ Setup instructions for macOS, Windows, and Linux are available in the Settings panel under "VLC Protocol Setup". The setup creates a `vlc://` protocol handler that opens files in VLC when triggered from the browser.
258
+
259
+ **Platform details:**
260
+ - **macOS**: Creates an AppleScript app at `/Applications/VLCProtocol.app` and registers it as a URL handler
261
+ - **Windows**: Registry entry or batch script that maps `vlc://` to the VLC executable
262
+ - **Linux**: Desktop file at `~/.local/share/applications/vlc-protocol.desktop` registered with xdg-mime
@@ -0,0 +1,134 @@
1
+ # Video Viewer and Explorer
2
+
3
+ The video viewer provides an action menu for choosing how to interact with a video, inline browser playback, VLC streaming, and a frame explorer for scrubbing through video content visually.
4
+
5
+ ## Opening a Video
6
+
7
+ - **From the gallery**: select a video file and press `Enter`, or double-click it
8
+ - **Force any file as video**: press `2` in the gallery or viewer to open it in the video viewer regardless of extension
9
+
10
+ ## Video Action Menu
11
+
12
+ When a video is opened, an action menu appears instead of playing immediately. The menu shows the filename and a preview frame extracted from the video midpoint.
13
+
14
+ ### Menu Options
15
+
16
+ | Key | Option | Description |
17
+ |-----|--------|-------------|
18
+ | `Space` / `Enter` | **Play in Browser** | Plays the video inline with HTML5 `<video>` controls |
19
+ | `e` | **Explore Video Frames** | Opens the frame explorer (requires ffmpeg) |
20
+ | `t` | **Extract Thumbnail** | Extracts a single frame from the midpoint |
21
+ | `v` | **Stream with VLC** | Sends the file to VLC on the server machine |
22
+
23
+ The preview frame in the menu is loaded automatically from the server. If ffmpeg is not available, the Explore and Thumbnail options are hidden.
24
+
25
+ Navigation shortcuts still work while the menu is open:
26
+
27
+ | Key | Action |
28
+ |-----|--------|
29
+ | Right / `j` | Skip to next file |
30
+ | Left / `k` | Skip to previous file |
31
+ | `Esc` | Back to gallery |
32
+
33
+ ## In-Browser Playback
34
+
35
+ Pressing `Space` or `Enter` replaces the action menu with an HTML5 video player. The player has native browser controls for play/pause, seeking, volume, and fullscreen.
36
+
37
+ Below the player, a **stats bar** shows:
38
+
39
+ - **Duration** (formatted as mm:ss)
40
+ - **Resolution** (width x height)
41
+ - **Codec** (e.g., h264, hevc, vp9)
42
+ - **Bitrate** (in kbps or Mbps)
43
+ - **File Size** (formatted)
44
+
45
+ The stats bar also includes buttons to jump to the Video Explorer or stream with VLC.
46
+
47
+ ### Autoplay
48
+
49
+ Autoplay is off by default. Enable it in Settings > Gallery > Autoplay video. When enabled, videos begin playing as soon as the player loads.
50
+
51
+ ## Video Explorer
52
+
53
+ The video explorer extracts multiple frames from a video and displays them in a grid, letting you scrub through content visually without playing the video.
54
+
55
+ ### Opening the Explorer
56
+
57
+ - From the video action menu, press `e`
58
+ - From the video stats bar during playback, click "Explore Video"
59
+
60
+ ### Frame Grid
61
+
62
+ Frames are displayed in a responsive grid. Each frame card shows:
63
+
64
+ - The extracted frame image
65
+ - A timestamp label (e.g., "1:23")
66
+ - A frame index number
67
+
68
+ Double-click any frame to open it in a full-screen preview overlay.
69
+
70
+ ### Controls
71
+
72
+ At the top of the explorer:
73
+
74
+ | Control | Description |
75
+ |---------|-------------|
76
+ | Frame count dropdown | Choose 10, 20, 40, 60, or 100 frames (default: 20) |
77
+ | Full-res checkbox | Extract frames at 1920x1080 instead of 640x360 |
78
+ | Refresh button | Re-extract frames with current settings |
79
+
80
+ ### Info Bar
81
+
82
+ Below the controls, an info bar displays video metadata:
83
+
84
+ - Duration
85
+ - Resolution
86
+ - Codec
87
+ - File size
88
+ - Number of extracted frames
89
+
90
+ ### Timeline Bar
91
+
92
+ Below the frame grid, a timeline bar shows the video duration with markers at each extracted frame's position. The timeline also shows markers for any custom frames you extract.
93
+
94
+ **Click anywhere on the timeline** to extract a frame at that exact timestamp. The extracted frame appears in the grid in chronological order, styled with a dashed border to distinguish it from the evenly-spaced frames.
95
+
96
+ ### Frame Preview
97
+
98
+ Double-click any frame in the grid to open a full-screen preview overlay showing the frame at full size.
99
+
100
+ In the preview:
101
+
102
+ | Key | Action |
103
+ |-----|--------|
104
+ | Left / `k` | Previous frame |
105
+ | Right / `j` | Next frame |
106
+ | `Esc` | Close preview |
107
+
108
+ The Back button in the preview header also closes it. Navigation moves through all frames (regular and custom) in chronological order.
109
+
110
+ ### Keyboard Shortcuts
111
+
112
+ | Key | Action |
113
+ |-----|--------|
114
+ | `Esc` | Back to video viewer |
115
+
116
+ ## VLC Streaming
117
+
118
+ Press `v` from the action menu, stats bar, or viewer to send the current video to VLC running on the server. This is useful for files in formats the browser cannot play natively.
119
+
120
+ VLC protocol setup instructions are available in Settings > VLC Protocol Setup, with platform-specific guides for macOS, Windows, and Linux.
121
+
122
+ ## File Info Overlay
123
+
124
+ Press `i` while viewing a video to see metadata:
125
+
126
+ - Size, Duration, Resolution, Codec, Bitrate, Format, Modified date, Path
127
+
128
+ ## Supported Formats
129
+
130
+ **Natively recognized extensions**: mp4, webm, mov, mkv, avi, wmv, flv, m4v, ogv, mpg, mpeg, mpe, mpv, m2v, ts, mts, m2ts, vob, 3gp, 3g2, f4v, rm, rmvb, divx, asf, mxf, dv, nsv, nuv, y4m, wtv, swf, dat
131
+
132
+ **Browser playback support** varies by format. Most browsers play mp4 (h264), webm (vp8/vp9), and ogg natively. For other formats, use VLC streaming or the frame explorer.
133
+
134
+ **Force any file as video** by pressing `2` in the gallery or viewer to bypass extension detection. This is useful for misnamed files (e.g., `.avii` instead of `.avi`).
package/html/docs.html ADDED
@@ -0,0 +1,59 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
7
+ <meta name="description" content="Retold Remote Documentation">
8
+
9
+ <title>Retold Remote - Documentation</title>
10
+
11
+ <!-- Docuserve base stylesheet -->
12
+ <link href="css/docuserve.css" rel="stylesheet">
13
+ <!-- PICT Dynamic View CSS Container -->
14
+ <style id="PICT-CSS"></style>
15
+
16
+ <!-- Load the PICT library -->
17
+ <script src="js/pict.min.js" type="text/javascript"></script>
18
+ <!-- Bootstrap the Application -->
19
+ <script type="text/javascript">
20
+ Pict.safeOnDocumentReady(function()
21
+ {
22
+ // Intercept AppData.Docuserve creation to inject DocsBaseURL
23
+ // before pict-docuserve starts fetching markdown files.
24
+ var _origInit = PictDocuserve.prototype.onAfterInitializeAsync;
25
+ PictDocuserve.prototype.onAfterInitializeAsync = function(fCallback)
26
+ {
27
+ var _appData = this.pict.AppData;
28
+ // One-shot setter: when onAfterInitializeAsync assigns
29
+ // AppData.Docuserve, modify DocsBaseURL before loadCatalog runs.
30
+ Object.defineProperty(_appData, 'Docuserve',
31
+ {
32
+ configurable: true,
33
+ enumerable: true,
34
+ set: function(pValue)
35
+ {
36
+ pValue.DocsBaseURL = 'docs/';
37
+ Object.defineProperty(_appData, 'Docuserve',
38
+ {
39
+ configurable: true,
40
+ enumerable: true,
41
+ writable: true,
42
+ value: pValue
43
+ });
44
+ }
45
+ });
46
+ return _origInit.call(this, fCallback);
47
+ };
48
+ Pict.safeLoadPictApplication(PictDocuserve, 2);
49
+ });
50
+ </script>
51
+ </head>
52
+ <body>
53
+ <!-- The root container for the Pict application -->
54
+ <div id="Docuserve-Application-Container"></div>
55
+
56
+ <!-- Load the Docuserve PICT Application Bundle -->
57
+ <script src="js/pict-docuserve.min.js" type="text/javascript"></script>
58
+ </body>
59
+ </html>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "retold-remote",
3
- "version": "0.0.4",
3
+ "version": "0.0.6",
4
4
  "description": "Retold Remote - NAS media browser with gallery views and keyboard navigation",
5
5
  "main": "source/Pict-RetoldRemote-Bundle.js",
6
6
  "bin": {
@@ -12,12 +12,12 @@
12
12
  "web-application/",
13
13
  "html/",
14
14
  "css/",
15
- "server.js",
15
+ "docs/",
16
16
  "README.md",
17
17
  "LICENSE"
18
18
  ],
19
19
  "scripts": {
20
- "start": "node server.js",
20
+ "start": "node source/cli/RetoldRemote-CLI-Run.js serve",
21
21
  "build": "npx quack build && npx quack copy",
22
22
  "test": "npx mocha -u tdd --exit --timeout 30000 test/*_test.js",
23
23
  "prepack": "npm run build"
@@ -28,23 +28,25 @@
28
28
  "epubjs": "^0.3.93",
29
29
  "fable": "^3.1.63",
30
30
  "fable-serviceproviderbase": "^3.0.19",
31
- "orator": "^6.0.3",
31
+ "orator": "^6.0.4",
32
32
  "orator-serviceserver-restify": "^2.0.9",
33
- "pict": "^1.0.356",
33
+ "parime": "^1.0.3",
34
+ "pict": "^1.0.357",
34
35
  "pict-application": "^1.0.33",
36
+ "pict-docuserve": "^0.0.32",
35
37
  "pict-provider": "^1.0.12",
36
38
  "pict-section-code": "^1.0.3",
37
39
  "pict-section-filebrowser": "^0.0.2",
38
40
  "pict-service-commandlineutility": "^1.0.19",
39
41
  "pict-view": "^1.0.67",
40
- "retold-content-system": "^1.0.4",
42
+ "retold-content-system": "^1.0.8",
41
43
  "yauzl": "^3.2.0"
42
44
  },
43
45
  "optionalDependencies": {
44
46
  "sharp": "^0.34.5"
45
47
  },
46
48
  "devDependencies": {
47
- "quackage": "^1.0.59"
49
+ "quackage": "^1.0.61"
48
50
  },
49
51
  "copyFilesSettings": {
50
52
  "whenFileExists": "overwrite"
@@ -69,6 +71,18 @@
69
71
  {
70
72
  "from": "./node_modules/epubjs/dist/epub.min.js",
71
73
  "to": "./web-application/js/"
74
+ },
75
+ {
76
+ "from": "./node_modules/pict-docuserve/dist/pict-docuserve.min.js",
77
+ "to": "./web-application/js/"
78
+ },
79
+ {
80
+ "from": "./node_modules/pict-docuserve/css/docuserve.css",
81
+ "to": "./web-application/css/"
82
+ },
83
+ {
84
+ "from": "./docs/*.md",
85
+ "to": "./web-application/docs/"
72
86
  }
73
87
  ]
74
88
  }