{
  "name": "shapesnap",
  "version": "1.2.1",
  "description": "Transform images to SVG using primitive shapes",
  "author": "kodemunkie",
  "license": "MIT",
  "main": "./dist/Shapesnap.js",
  "types": "./dist/Shapesnap.d.ts",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/KodeMunkie/shapesnap.git"
  },
  "keywords": [
    "art",
    "svg",
    "shapes",
    "image-processing",
    "rasterizer",
    "primitive",
    "vectorization"
  ],
  "scripts": {
    "clean": "rimraf dist",
    "build": "npm run clean && rollup -c",
    "test": "jest",
    "dev": "tsx ./runner.ts images/robot.png ./robot.svg"
  },
  "devDependencies": {
    "@types/jest": "^29.5.12",
    "@types/ndarray": "^1.0.14",
    "@types/node": "^20.12.7",
    "jest": "^29.7.0",
    "rimraf": "^5.0.5",
    "ts-jest": "^29.1.2",
    "ts-node": "^10.9.2",
    "typescript": "^5.4.5"
  },
  "dependencies": {
    "bezier": "^0.1.0",
    "bresenham": "0.0.4",
    "color-blend": "^4.0.0",
    "fdrandom": "^3.2.0",
    "jimp": "^0.22.12",
    "ndarray": "^1.0.19",
    "point-in-ellipse": "^2.0.0",
    "robust-point-in-polygon": "^1.0.3",
    "rollup": "^4.17.1",
    "rollup-plugin-typescript2": "^0.36.0",
    "ts-stopwatch": "^0.0.4",
    "zeros": "^1.0.0"
  }
}
