Files
FossFLOW/packages/fossflow-lib/package.json
semantic-release-bot 39d9dd5e21 chore(release): 1.3.0 [skip ci]
## [1.3.0](https://github.com/stan-smith/FossFLOW/compare/v1.2.0...v1.3.0) (2025-10-09)

### Features

* **ci:** added selenium based testing procedure for integration tests ([af6dabe](af6dabe0fd))
2025-10-09 10:09:32 +00:00

98 lines
2.9 KiB
JSON

{
"name": "fossflow",
"version": "1.3.0",
"private": false,
"description": "An open-source React component for drawing network diagrams - forked from isoflow.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stan-smith/FossFLOW.git"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "webpack --watch",
"dev": "webpack --watch",
"build": "webpack && tsc --project tsconfig.declaration.json && tsc-alias",
"build:watch": "webpack --watch",
"test": "jest",
"lint": "tsc --noEmit && eslint ./src/**/* --ext .ts,.tsx",
"lint:fix": "eslint --fix ./src/**/* --ext .ts,.tsx",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^5.18.0",
"@mui/material": "^5.18.0",
"auto-bind": "^5.0.1",
"chroma-js": "^2.6.0",
"dom-to-image": "^2.6.0",
"file-saver": "^2.0.5",
"gsap": "^3.13.0",
"immer": "^10.1.3",
"mui-color-input": "^2.0.3",
"paper": "^0.12.18",
"pathfinding": "^0.4.18",
"react-hook-form": "^7.64.0",
"react-quill-new": "^3.6.0",
"react-router-dom": "^6.30.1",
"uuid": "^9.0.1",
"zod": "^3.25.76",
"zustand": "^4.5.7"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@isoflow/isopacks": "^0.0.10",
"@rsbuild/core": "^1.5.14",
"@rsbuild/plugin-react": "^1.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/chroma-js": "^2.4.5",
"@types/dom-to-image": "^2.6.7",
"@types/file-saver": "^2.0.7",
"@types/jest": "^29.5.14",
"@types/jsdom": "^21.1.7",
"@types/pathfinding": "^0.0.6",
"@types/quill": "^2.0.14",
"@types/uuid": "^9.0.8",
"@eslint/js": "^9.37.0",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"babel-loader": "^10.0.0",
"css-loader": "^6.11.0",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"typescript-eslint": "^8.46.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^21.1.2",
"mini-css-extract-plugin": "^2.9.4",
"prettier": "^3.6.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^2.15.4",
"style-loader": "^3.3.4",
"ts-jest": "^29.4.4",
"tsc-alias": "^1.8.16",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1"
}
}