{
  "name": "vitest-canvas-mock",
  "type": "module",
  "version": "0.3.3",
  "packageManager": "pnpm@8.6.12",
  "description": "🌗 A module used to mock canvas in Vitest.",
  "author": "Robert Soriano <sorianorobertc@gmail.com>",
  "license": "MIT",
  "homepage": "https://github.com/wobsoriano/vitest-canvas-mock#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/wobsoriano/vitest-canvas-mock.git"
  },
  "bugs": "https://github.com/wobsoriano/vitest-canvas-mock/issues",
  "keywords": [
    "mock",
    "canvas",
    "vitest",
    "test"
  ],
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.cjs",
      "import": "./dist/index.js"
    }
  },
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "build-fast": "tsup src/index.ts --format cjs,esm",
    "build": "pnpm build-fast --dts-resolve",
    "lint": "eslint .",
    "release": "bumpp && npm publish",
    "test": "vitest",
    "typecheck": "tsc --noEmit"
  },
  "peerDependencies": {
    "vitest": "*"
  },
  "dependencies": {
    "jest-canvas-mock": "~2.5.2"
  },
  "devDependencies": {
    "@antfu/eslint-config": "^0.40.2",
    "bumpp": "^9.1.1",
    "eslint": "^8.46.0",
    "tsup": "7.2.0",
    "typescript": "^5.1.6",
    "vitest": "^0.34.1"
  },
  "eslintConfig": {
    "extends": "@antfu"
  }
}
