{
  "name": "esbuild-plugin-manifest",
  "version": "1.0.5",
  "description": "Plugin for esbuild to generate asset manifest.json file",
  "keywords": [
    "esbuild",
    "plugin",
    "manifest",
    "asset hash",
    "cache bust"
  ],
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "author": {
    "name": "Justin Fortunato",
    "email": "developer@jfortunato.com",
    "url": "jfortunato.com"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/jfortunato/esbuild-plugin-manifest"
  },
  "devDependencies": {
    "@types/jest": "^28.1.3",
    "@types/proper-lockfile": "^4.1.3",
    "@types/rimraf": "^3.0.0",
    "esbuild": "^0.24.0",
    "jest": "^28.1.3",
    "rimraf": "^3.0.2",
    "ts-jest": "^28.0.8",
    "typescript": "^4.3.0"
  },
  "peerDependencies": {
    "esbuild": "~0"
  },
  "scripts": {
    "build": "tsc",
    "build:watch": "tsc --watch",
    "test": "jest",
    "test:coverage": "jest --coverage",
    "prepack": "yarn run build"
  },
  "files": [
    "lib/**/*"
  ],
  "dependencies": {
    "proper-lockfile": "^4.1.2"
  }
}
