Files
xyflow/packages/core/package.json
2022-09-07 17:50:44 +02:00

56 lines
1.3 KiB
JSON

{
"name": "@reactflow/core",
"version": "11.0.0-next.3",
"description": "Core components and util functions of React Flow.",
"keywords": [
"react",
"node-based UI",
"graph",
"diagram",
"workflow",
"react-flow"
],
"files": [
"dist"
],
"main": "dist/reactflow-core.cjs.js",
"module": "dist/reactflow-core.esm.js",
"types": "dist/reactflow-core.cjs.d.ts",
"sideEffects": false,
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/wbkd/react-flow.git",
"directory": "packages/core"
},
"scripts": {
"build": "postcss src/styles/{base,style}.css --config ../../postcss.config.json --dir dist"
},
"dependencies": {
"@babel/runtime": "^7.18.9",
"@types/d3": "^7.4.0",
"classcat": "^5.0.3",
"d3-drag": "^3.0.0",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0",
"zustand": "^4.0.0"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@types/react": "^18.0.17",
"autoprefixer": "^10.4.8",
"postcss": "^8.4.14",
"postcss-cli": "^10.0.0",
"postcss-combine-duplicated-selectors": "^10.0.3",
"postcss-import": "^14.1.0",
"postcss-nested": "^5.0.6",
"tsconfig": "*"
}
}