Generate web slides from Markdoc

docs: add package READMEs

graham.systems 573c529c ec8210d7

verified
Changed files
+25 -4
packages
+6
packages/cli/README.md
··· 1 + # @morkdeck/cli 2 + 3 + The main interface for using morkdeck. Contains commands: 4 + 5 + - `dev`, for previewing your presentation as you work on it 6 + - `build`, for building your presentation to an HTML output
+1 -1
packages/cli/deno.json
··· 3 3 "version": "0.0.0", 4 4 "exports": "./main.ts", 5 5 "imports": { 6 - "@cliffy/command": "jsr:@cliffy/command@1.0.0-rc.8", 6 + "@cliffy/command": "jsr:@cliffy/command@1.0.0-rc.8" 7 7 } 8 8 }
+4
packages/core/README.md
··· 1 + # @morkdeck/core 2 + 3 + Rendering engine for morkdeck, which converts a Markdoc file into an HTML 4 + string.
+3
packages/runtime/README.md
··· 1 + # @morkdeck/runtime 2 + 3 + State management for morkdeck during runtime.
+1 -1
packages/runtime/deno.json
··· 1 1 { 2 2 "name": "@morkdeck/runtime", 3 3 "version": "0.0.0", 4 - "exports": "./mod.ts", 4 + "exports": "./mod.ts" 5 5 }
+4
packages/server/README.md
··· 1 + # @morkdeck/server 2 + 3 + Development server with live-reload capabilities, file watching, and esbuild 4 + integration for runtime bundling.
+1 -1
packages/server/deno.json
··· 8 8 "@std/async": "jsr:@std/async@^1.0.14", 9 9 "@std/http": "jsr:@std/http@^1.0.20", 10 10 "@std/path": "jsr:@std/path@^1.1.1", 11 - "esbuild": "npm:esbuild@^0.25.9", 11 + "esbuild": "npm:esbuild@^0.25.9" 12 12 } 13 13 }
+4
packages/wc/README.md
··· 1 + # @morkdeck/wc 2 + 3 + Lit-based Web Components that provide the core frontend functionality for 4 + morkdeck. Compiled and bundled with your presentation.
+1 -1
packages/wc/deno.json
··· 6 6 "@es-toolkit/es-toolkit": "jsr:@es-toolkit/es-toolkit@^1.39.9", 7 7 "lit": "npm:lit@^3.3.1", 8 8 "@lit/context": "npm:@lit/context@^1.1.6", 9 - "motion": "npm:motion@^12.23.12", 9 + "motion": "npm:motion@^12.23.12" 10 10 } 11 11 }