{
  "name": "@jashitory/drawflow",
  "version": "1.1.1",
  "description": "Simple flow library",
  "main": "dist/drawflow.js",
  "exports": "./dist/drawflow.js",
  "types": "./dist/drawflow.d.ts",
  "type": "module",
  "repository": {
    "type": "git",
    "url": "https://github.com/phophs/Drawflow.git"
  },
  "keywords": [
    "flow",
    "javascript",
    "javascript-library",
    "typescript",
    "typescript-library",
    "flow-based-programming",
    "flowchart"
  ],
  "author": "Jero soler",
  "contributors": [
    {
      "name": "Jesus Figueredo",
      "email": "jesus@figueredo.dev"
    }
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/phophs/Drawflow/issues"
  },
  "homepage": "https://github.com/phophs/Drawflow#readme",
  "devDependencies": {
    "@types/uuid": "^9.0.0",
    "@typescript-eslint/eslint-plugin": "^5.46.1",
    "@typescript-eslint/parser": "^5.46.1",
    "esbuild": "^0.15.18",
    "eslint": "^8.29.0",
    "eslint-plugin-deprecation": "^1.3.3",
    "gulp": "^4.0.2",
    "gulp-concat": "^2.6.1",
    "gulp-minify-css": "^1.2.4",
    "gulp-replace": "^1.1.3",
    "lit": "^2.5.0",
    "rollup": "^3.7.3",
    "typescript": "^4.9.4",
    "vite": "^3.2.5"
  },
  "dependencies": {
    "uuid": "^9.0.0"
  },
  "scripts": {
    "dev": "vite",
    "build": "npm run build:js && npm run build:css && npm run build:types",
    "build:js": "node ./scripts/build.js",
    "build:types": "tsc --declaration --emitDeclarationOnly -p ./tsconfig.build.json",
    "build:css": "cp src/drawflow.css dist/",
    "test": "echo \"Error: no test specified\" && exit 1"
  }
}