{
  "name": "reveal.js-plugintoolkit",
  "version": "1.2.2",
  "sideEffects": false,
  "description": "Toolkit for building Reveal.js plugins",
  "main": "dist/plugintoolkit.js",
  "module": "dist/plugintoolkit.mjs",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "author": {
    "name": "Martijn De Jongh (Martino)",
    "email": "martijn.de.jongh@gmail.com",
    "web": "https://martinomagnifico.github.io",
    "url": "https://martinomagnifico.github.io",
    "username": "martinomagnifico"
  },
  "homepage": "https://github.com/martinomagnifico/reveal.js-plugintoolkit",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/martinomagnifico/reveal.js-plugintoolkit.git"
  },
  "scripts": {
    "dev": "vite",
    "build": "vite build",
    "build:demo": "npm run build && cd demo && vite build",
    "preview": "npm run build && cd demo && serve -s .",
    "prepublishOnly": "npm run build",
    "test": "npm run build && node test/event-tools.test.mjs && node test/theme-tools.test.mjs && node test/state-tools.test.mjs && node test/position-tools.test.mjs",
    "test:events": "node test/event-tools.test.mjs",
    "test:theme": "node test/theme-tools.test.mjs",
    "test:states": "node test/state-tools.test.mjs",
    "test:positions": "node test/position-tools.test.mjs"
  },
  "peerDependencies": {
    "reveal.js": ">=4.0.0"
  },
  "dependencies": {
    "deepmerge": "^4.3.1"
  },
  "devDependencies": {
    "@typescript/typescript6": "^6.0.2",
    "serve": "^14.2.6",
    "typescript": "^7.0.2",
    "vite": "^8.2.2",
    "vite-plugin-dts": "^5.0.3"
  }
}
