chore(packages): adjust names
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
# reactflow
|
||||
|
||||
Bundles:
|
||||
|
||||
* @react-flow/core
|
||||
* @react-flow/background
|
||||
* @react-flow/controls
|
||||
* @react-flow/minimap
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
```sh
|
||||
npm install reactflow
|
||||
```
|
||||
|
||||
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"name": "reactflow",
|
||||
"version": "11.0.0-next.0",
|
||||
"description": "A highly customizable React library for building node-based editors and interactive flow charts",
|
||||
"keywords": [
|
||||
"react",
|
||||
"node-based UI",
|
||||
"graph",
|
||||
"diagram",
|
||||
"workflow",
|
||||
"react-flow"
|
||||
],
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"main": "dist/reactflow.cjs.js",
|
||||
"module": "dist/reactflow.esm.js",
|
||||
"sideEffects": false,
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/wbkd/react-flow.git",
|
||||
"directory": "packages/reactflow"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "postcss src/*.css --config ../../postcss.config.json --dir dist"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.18.9",
|
||||
"@react-flow/background": "workspace:*",
|
||||
"@react-flow/controls": "workspace:*",
|
||||
"@react-flow/core": "workspace:*",
|
||||
"@react-flow/minimap": "workspace:*"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": ">=18",
|
||||
"react-dom": ">=18"
|
||||
},
|
||||
"devDependencies": {
|
||||
"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"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
@import '../../core/src/styles/base.css';
|
||||
@import '../../controls/src/style.css';
|
||||
@import '../../minimap/src/style.css';
|
||||
@@ -0,0 +1,4 @@
|
||||
export * from '@react-flow/core';
|
||||
export * from '@react-flow/minimap';
|
||||
export * from '@react-flow/controls';
|
||||
export * from '@react-flow/background';
|
||||
@@ -0,0 +1,3 @@
|
||||
@import '../../core/src/styles/style.css';
|
||||
@import '../../controls/src/style.css';
|
||||
@import '../../minimap/src/style.css';
|
||||
Reference in New Issue
Block a user