{
  "name": "pureimage",
  "version": "0.4.18",
  "description": "Pure JS image drawing API based on Canvas. Export to PNG, JPG, and streams.",
  "author": {
    "name": "Josh Marinacci",
    "email": "joshua@marinacci.org",
    "url": "https://joshondesign.com/"
  },
  "files": [
    "dist/*"
  ],
  "type": "module",
  "types": "./dist/index.d.ts",
  "module": "./dist/index.esm.js",
  "main": "./dist/index.cjs",
  "browser": "./dist/browser.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/joshmarinacci/node-pureimage.git"
  },
  "dependencies": {
    "jpeg-js": "^0.4.4",
    "opentype.js": "^0.4.3",
    "pngjs": "^7.0.0"
  },
  "devDependencies": {
    "@types/opentype.js": "^1.3.6",
    "esbuild": "^0.18.19",
    "npm-dts": "^1.3.12",
    "typescript": "^5.1.6",
    "vitest": "^0.34.2"
  },
  "scripts": {
    "test": "npm run vitest && npm run type-check",
    "vitest": "vitest run --dir test",
    "build": "node build.js",
    "type-check": "tsc",
    "clean": "rm -rf dist/ output/ *.tgz",
    "release": "npm run clean && npm run build && npm run test && npm version patch && npm publish"
  },
  "engines": {
    "node": ">=14.19.0"
  },
  "license": "MIT"
}
