{
  "name": "marp-ui",
  "version": "0.6.1",
  "description": "A web application for creating, managing, and presenting MARP markdown slide presentations",
  "type": "module",
  "bin": {
    "marp-ui": "bin/marp-ui.mjs"
  },
  "files": [
    "bin/",
    "dist/server/",
    "dist/client/",
    "scripts/",
    "client/public/favicon.svg",
    "client/public/icon.svg",
    "client/public/AppIcon.icns",
    "client/public/menubar-icon.png",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "dev": "concurrently --names server,client \"tsx watch server/index.ts\" \"cd client && npm run dev\"",
    "build": "cd client && npm install && npm run build && cd .. && tsc",
    "create-shortcut": "node scripts/create-shortcut.mjs",
    "remove-shortcut": "node scripts/remove-shortcut.mjs",
    "postinstall": "node scripts/create-shortcut.mjs",
    "preuninstall": "node scripts/remove-shortcut.mjs",
    "prepublishOnly": "npm run build",
    "start": "NODE_ENV=production node dist/server/index.js",
    "test": "vitest run",
    "test:watch": "vitest"
  },
  "keywords": [
    "marp",
    "slides",
    "presentation",
    "markdown",
    "speaker-notes",
    "mermaid"
  ],
  "author": "squarecows <ric@squarecows.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://codeberg.org/ric_harvey/marp-ui.git"
  },
  "homepage": "https://codeberg.org/ric_harvey/marp-ui",
  "engines": {
    "node": ">=20"
  },
  "devDependencies": {
    "@types/express": "^5.0.6",
    "@types/multer": "^2.1.0",
    "@types/node": "^25.6.0",
    "@types/supertest": "^7.2.0",
    "concurrently": "^9.2.1",
    "supertest": "^7.2.2",
    "tsx": "^4.21.0",
    "typescript": "^6.0.2",
    "vitest": "^4.1.4"
  },
  "dependencies": {
    "@marp-team/marp-cli": "^4.3.1",
    "@marp-team/marp-core": "^4.3.0",
    "@marp-team/marpit": "^3.2.1",
    "@modelcontextprotocol/sdk": "^1.29.0",
    "express": "^5.2.1",
    "highlight.js": "^11.11.1",
    "markdown-it-abbr": "^2.0.0",
    "markdown-it-deflist": "^3.0.0",
    "markdown-it-footnote": "^4.0.0",
    "markdown-it-ins": "^4.0.0",
    "markdown-it-mark": "^4.0.0",
    "markdown-it-sub": "^2.0.0",
    "markdown-it-sup": "^2.0.0",
    "markdown-it-task-lists": "^2.1.1",
    "marp-ui": "^0.6.0",
    "mermaid": "^11.14.0",
    "multer": "^2.1.1",
    "zod": "^4.3.6"
  }
}
