Files
FossFLOW/packages/fossflow-lib/package.json
dependabot[bot] c6994b3751 chore(deps): bump the minor-and-patch group with 6 updates (#303)
Bumps the minor-and-patch group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [i18next-http-backend](https://github.com/i18next/i18next-http-backend) | `3.0.4` | `3.0.5` |
| [react-i18next](https://github.com/i18next/react-i18next) | `17.0.3` | `17.0.4` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `7.14.1` | `7.14.2` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.72.1` | `7.73.1` |
| [@rslib/core](https://github.com/web-infra-dev/rslib/tree/HEAD/packages/core) | `0.21.1` | `0.21.2` |
| [prettier](https://github.com/prettier/prettier) | `3.8.2` | `3.8.3` |


Updates `i18next-http-backend` from 3.0.4 to 3.0.5
- [Changelog](https://github.com/i18next/i18next-http-backend/blob/master/CHANGELOG.md)
- [Commits](https://github.com/i18next/i18next-http-backend/compare/v3.0.4...v3.0.5)

Updates `react-i18next` from 17.0.3 to 17.0.4
- [Changelog](https://github.com/i18next/react-i18next/blob/master/CHANGELOG.md)
- [Commits](https://github.com/i18next/react-i18next/compare/v17.0.3...v17.0.4)

Updates `react-router-dom` from 7.14.1 to 7.14.2
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@7.14.2/packages/react-router-dom)

Updates `react-hook-form` from 7.72.1 to 7.73.1
- [Release notes](https://github.com/react-hook-form/react-hook-form/releases)
- [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md)
- [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.72.1...v7.73.1)

Updates `@rslib/core` from 0.21.1 to 0.21.2
- [Release notes](https://github.com/web-infra-dev/rslib/releases)
- [Commits](https://github.com/web-infra-dev/rslib/commits/v0.21.2/packages/core)

Updates `prettier` from 3.8.2 to 3.8.3
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](https://github.com/prettier/prettier/compare/3.8.2...3.8.3)

---
updated-dependencies:
- dependency-name: i18next-http-backend
  dependency-version: 3.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react-i18next
  dependency-version: 17.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react-router-dom
  dependency-version: 7.14.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: react-hook-form
  dependency-version: 7.73.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@rslib/core"
  dependency-version: 0.21.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: prettier
  dependency-version: 3.8.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-04-21 21:17:04 +00:00

80 lines
2.2 KiB
JSON

{
"name": "fossflow",
"version": "1.10.8",
"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": "rslib build --watch",
"dev": "rslib build --watch",
"build": "rslib build && tsc --project tsconfig.declaration.json && tsc-alias",
"build:watch": "rslib build --watch",
"test": "jest",
"lint": "tsc --noEmit",
"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": "^3.2.0",
"dom-to-image": "^2.6.0",
"file-saver": "^2.0.5",
"gsap": "^3.15.0",
"immer": "^11.1.4",
"mui-color-input": "^2.0.3",
"paper": "^0.12.18",
"pathfinding": "^0.4.18",
"react-hook-form": "^7.73.1",
"react-quill-new": "^3.8.3",
"react-router-dom": "^7.14.2",
"uuid": "^9.0.1",
"zod": "^3.25.76",
"zustand": "^4.5.7"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@isoflow/isopacks": "^0.0.10",
"@rsbuild/core": "^1.7.5",
"@rsbuild/plugin-react": "^1.4.6",
"@rslib/core": "^0.21.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/chroma-js": "^3.1.2",
"@types/dom-to-image": "^2.6.7",
"@types/file-saver": "^2.0.7",
"@types/jest": "^29.5.14",
"@types/jsdom": "^28.0.1",
"@types/pathfinding": "^0.1.0",
"@types/quill": "^2.0.14",
"@types/uuid": "^9.0.8",
"css-loader": "^7.1.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.3.0",
"jsdom": "^29.0.2",
"prettier": "^3.8.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"recharts": "^3.8.1",
"style-loader": "^4.0.0",
"ts-jest": "^29.4.9",
"tsc-alias": "^1.8.16"
}
}