{
  "name": "smdm-slide-menu",
  "version": "3.0.0",
  "author": "Jakob Osterberger <jo@studiomitte.com>",
  "license": "MIT",
  "type": "module",
  "description": "A library agnostic multilevel page menu with a smooth slide effect based on CSS transitions, focused on accessibility.",
  "browserslist": [
    "> 1%"
  ],
  "keywords": [
    "menu",
    "multi level",
    "navigation",
    "foldable",
    "mobile",
    "accessibility"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/studiomitte/slide-menu.git"
  },
  "bugs": "https://github.com/studiomitte/slide-menu/issues",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "./*",
    "dist/*",
    "src/*"
  ],
  "devDependencies": {
    "@cypress-audit/pa11y": "^1.4.2",
    "chrome-launcher": "^1.1.2",
    "cypress": "^13.13.1",
    "cypress-real-events": "^1.13.0",
    "oxfmt": "^0.41.0",
    "oxlint": "^1.56.0",
    "puppeteer": "~9.1.1",
    "sass": "^1.77.2",
    "typescript": "^6.0.2",
    "vite": "^8.0.2"
  },
  "scripts": {
    "test-a11y": "pa11y http://frontend:8080/demo/js-demo.html --config ./pa11y.config.json",
    "test": "ddev test",
    "build": "npx tsc -p . && npx vite build",
    "format": "oxfmt",
    "lint": "oxlint 'src/lib/SlideMenu.ts' 'src/lib/Slide.ts' 'src/lib/SlideMenuOptions.ts'",
    "watch": "npx vite --port 8080",
    "typecheck": "npx tsc --noEmit",
    "pre-version": "npm run lint && npm run typecheck && npm run format && npm run test && npm run build",
    "publish-version": "git push && git push --tags && npm publish",
    "version-patch": "npm run pre-version && npm version patch --force -m \"[RELEASE] patch version %s\"",
    "version-minor": "npm run pre-version && npm version minor --force -m \"[RELEASE] minor version %s\"",
    "version-major": "npm run pre-version && npm version major --force -m \"[RELEASE] major version %s\""
  },
  "dependencies": {
    "custom-event-polyfill": "1.0.7"
  }
}
