{
  "name": "vanilla-routing",
  "license": "MIT",
  "version": "1.0.1",
  "author": "jscodelover (manisha.4918@gmail.com)",
  "description": "Modern Vanilla Javascript routing library.",
  "keywords": [
    "route",
    "routing",
    "spa",
    "vanilla routing",
    "client side routing",
    "browser router",
    "hash router",
    "router"
  ],
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      }
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "start": "npm run lint && npm run dev-tsc",
    "build": "tsup",
    "dev-tsc": "tsup --watch",
    "release": "npm run build && npm publish",
    "lint": "eslint ./src",
    "lint:package": "publint --level warning",
    "format": "prettier . --check --ignore-path .gitignore",
    "format:fix": "prettier . --write --ignore-path .gitignore",
    "typecheck": "npx tsc",
    "____": "Example App____",
    "tsup:browser": "tsup --config ./src/app/browser-route/tsup.config.json --watch",
    "tsup:hash": "tsup --config ./src/app/hash-route/tsup.config.json --watch",
    "start:browser": "cd src/app/browser-route && node server.cjs & npm run tsup:browser ",
    "start:hash": "cd src/app/hash-route && npx serve -p 3001 & npm run tsup:hash",
    "start:app": "npm run start:browser & npm run start:hash",
    "_____": "TEST____",
    "test:e2e": "npx playwright test",
    "test:e2e:ui": "npx playwright test --ui",
    "test:e2e:report": "npx playwright show-report",
    "test:dev": "vitest",
    "test": "vitest run"
  },
  "devDependencies": {
    "@playwright/test": "^1.54.1",
    "@types/node": "^24.0.14",
    "@typescript-eslint/eslint-plugin": "^8.37.0",
    "@typescript-eslint/parser": "^8.37.0",
    "eslint": "^9.31.0",
    "express": "^5.1.0",
    "husky": "^9.1.7",
    "jsdom": "^26.1.0",
    "lint-staged": "^16.1.2",
    "prettier": "^3.6.2",
    "publint": "^0.3.12",
    "tsup": "^8.5.0",
    "typescript": "^5.8.3",
    "typescript-eslint": "^8.37.0",
    "vitest": "^3.2.4",
    "wait-on": "^8.0.3"
  },
  "lint-staged": {
    "*.{js,ts}": [
      "npm run format",
      "npm run lint"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jscodelover/vanilla-routing.git"
  },
  "homepage": "https://github.com/jscodelover/vanilla-routing#readme"
}
