Files
xyflow/package.json
2022-07-11 18:04:27 +02:00

33 lines
798 B
JSON

{
"name": "react-flow",
"version": "1.0.0",
"description": "A highly customizable React library for building node-based editors and interactive flow charts",
"repository": "git@github.com:wbkd/react-flow.git",
"license": "MIT",
"workspaces": [
"packages/*",
"examples/*"
],
"private": true,
"scripts": {
"dev": "preconstruct watch",
"postinstall": "preconstruct dev",
"build": "preconstruct build"
},
"dependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@preconstruct/cli": "^2.1.8",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"typescript": "^4.7.4"
},
"preconstruct": {
"packages": [
"packages/*"
]
}
}