{
  "name": "servitsy",
  "version": "0.6.0",
  "license": "MIT",
  "description": "Small, local HTTP server for static files",
  "keywords": [
    "cli",
    "http",
    "http-server",
    "server",
    "static"
  ],
  "homepage": "https://github.com/fvsch/servitsy",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/fvsch/servitsy.git"
  },
  "author": {
    "name": "Florens Verschelde",
    "url": "https://fvsch.com"
  },
  "type": "module",
  "bin": {
    "servitsy": "bin/servitsy.js"
  },
  "engines": {
    "deno": ">=2.0.3",
    "node": ">=20.12.0"
  },
  "files": [
    "./lib",
    "./LICENSE",
    "./README.md"
  ],
  "devDependencies": {
    "@types/node": "^24.12.0",
    "fs-fixture": "^2.14.0",
    "linkedom": "^0.18.13",
    "oxfmt": "^0.61.0",
    "oxlint": "^1.76.0",
    "typescript": "~7.0.2",
    "vitest": "^4.1.10"
  },
  "scripts": {
    "build": "node scripts/prebuild.js && tsc -p tsconfig.json --listEmittedFiles && oxfmt --write lib",
    "format": "oxfmt --write '**/*.{css,js,ts}' '**/*config*.json'",
    "lint": "oxlint",
    "test": "vitest --run test/*.test.ts",
    "typecheck": "tsc -p tsconfig.json --noEmit && tsc -p test/tsconfig.json --noEmit"
  }
}