File size: 1,684 Bytes
bc20498
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
  "name": "@xyflow/system",
  "version": "0.0.42",
  "description": "xyflow core system that powers React Flow and Svelte Flow.",
  "keywords": [
    "node-based UI",
    "graph",
    "diagram",
    "workflow",
    "reactflow",
    "svelteflow",
    "xyflow"
  ],
  "files": [
    "dist"
  ],
  "source": "src/index.ts",
  "main": "dist/umd/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/esm/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/esm/index.d.ts",
      "import": "./dist/esm/index.mjs",
      "require": "./dist/umd/index.js"
    }
  },
  "sideEffects": false,
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/xyflow/xyflow.git",
    "directory": "packages/system"
  },
  "dependencies": {
    "@types/d3-drag": "^3.0.7",
    "@types/d3-selection": "^3.0.10",
    "@types/d3-transition": "^3.0.8",
    "@types/d3-zoom": "^3.0.8",
    "d3-drag": "^3.0.0",
    "d3-selection": "^3.0.0",
    "d3-zoom": "^3.0.0"
  },
  "devDependencies": {
    "@types/node": "^18.7.16",
    "typescript": "5.1.3",
    "@xyflow/eslint-config": "0.0.0",
    "@xyflow/rollup-config": "0.0.0",
    "@xyflow/tsconfig": "0.0.0"
  },
  "rollup": {
    "globals": {
      "d3-selection": "d3Selection",
      "d3-zoom": "d3Zoom",
      "d3-drag": "d3Drag"
    },
    "vanilla": true,
    "name": "XYFlowSystem"
  },
  "scripts": {
    "dev": "concurrently \"rollup --config node:@xyflow/rollup-config --watch\"",
    "build": "rollup --config node:@xyflow/rollup-config --environment NODE_ENV:production",
    "lint": "eslint --ext .js,.ts src",
    "typecheck": "tsc --noEmit"
  }
}