{
  "name": "svg-path-simplify",
  "version": "0.4.5",

  "type": "module",

  "main": "./dist/svg-path-simplify.js",
  "module": "./dist/svg-path-simplify.esm.js",
  "browser": "./dist/svg-path-simplify.min.js",

  "exports": {
    ".": {
      "import": "./dist/svg-path-simplify.esm.js",
      "browser": "./dist/svg-path-simplify.min.js"
    },

    "./node": {
      "import": "./dist/svg-path-simplify.poly.cjs"
    },
  
    "./iife": {
      "default": "./dist/svg-path-simplify.min.js"
    }
  },


  "repository": {
    "type": "git",
    "url": "git+https://github.com/herrstrietzel/svg-path-simplify.git"
  },

  "scripts": {
    "build": "rollup -c",
    "watch": "rollup -c --watch",
    "test": "node tests/testSVG.js",
    "test1": "node tests/test.js",
    "test2": "node tests/testSVG2.js",
    "test3": "node tests/testSVG_transform.js",
    "test4": "node tests/testSVG_shape.js"
    
  },

  "keywords": [
    "bezier-simplification",
    "svg-minification",
    "svg"
  ],

  "author": "herrstrietzel",
  "license": "GPL-2.0",
  "description": "Simplify Bézier paths while maintaining their shape",

  "dependencies": {
    "linkedom": "^0.18.12"
  },

  "devDependencies": {
    "@rollup/plugin-terser": "^0.4.4",
    "rollup": "^3.29.5",
    "rollup-plugin-concat": "^1.0.4",
    "terser": "^5.43.1"
  },

  "bugs": {
    "url": "https://github.com/herrstrietzel/svg-path-simplify/issues"
  },

  "homepage": "https://github.com/herrstrietzel/svg-path-simplify#readme"
}
