{
  "name": "express-cache-file",
  "version": "1.0.0",
  "description": "Express middleware to cache static files in server memory",
  "author": "Beeno Tung <aabbcc1241@yahoo.com.hk> (https://beeno-tung.surge.sh)",
  "license": "BSD-2-Clause",
  "keywords": [
    "static-serve",
    "cache",
    "in-memory",
    "express-middleware"
  ],
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "examples",
    "dist"
  ],
  "scripts": {
    "format": "prettier --write {src,examples}/*.ts",
    "clean": "rimraf dist",
    "test": "tsc -p . --noEmit",
    "tsc": "tsc -p .",
    "build": "run-s clean tsc",
    "dev": "ts-node-dev examples/server.ts"
  },
  "devDependencies": {
    "@types/express": "^4.17.21",
    "express": "^4.18.2",
    "npm-run-all": "^4.1.5",
    "prettier": "^3.1.0",
    "rimraf": "^5.0.5",
    "ts-node": "^10.9.1",
    "typescript": "^5.3.2"
  },
  "dependencies": {
    "file-type": "^16.5.4"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/beenotung/express-cache-file.git"
  },
  "bugs": {
    "url": "https://github.com/beenotung/express-cache-file/issues"
  },
  "homepage": "https://github.com/beenotung/express-cache-file#readme"
}
