This repository was archived by the owner on Dec 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.18 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@tisoap/react-flow-smart-edge",
"version": "4.0.1",
"private": false,
"description": "Custom React Flow Edge that never intersects with other nodes",
"keywords": [
"react",
"typescript",
"graph",
"flow",
"flowchart",
"smart",
"edge",
"pathfinding",
"react-flow-smart-edge"
],
"homepage": "https://tisoap.github.io/react-flow-smart-edge/",
"bugs": {
"url": "https://github.com/tisoap/react-flow-smart-edge/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tisoap/react-flow-smart-edge.git"
},
"license": "MIT",
"author": "Tiso Alvarez Puccinelli",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "npm run build-component && npm run build-storybook",
"build-component": "vite build",
"build-storybook": "storybook build",
"check": "npm run typecheck && npm run spellcheck && npm run eslint && npm run prettier",
"deploy-storybook": "npm run build-storybook && npm run gh-pages",
"dev": "vite",
"eslint": "eslint .",
"eslint-fix": "eslint . --fix",
"fix": "npm run eslint-fix && npm run prettier-write",
"gh-pages": "gh-pages -d storybook-static",
"install-chromium": "npx playwright install chromium --with-deps",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"preview": "vite preview",
"release": "dotenv release-it",
"spellcheck": "cspell lint --no-progress .",
"storybook": "storybook dev -p 6006",
"test": "npm run test-storybook",
"test-storybook": "vitest run --project=storybook",
"typecheck": "tsc --noEmit --project tsconfig.app.json"
},
"devDependencies": {
"@chromatic-com/storybook": "4.1.1",
"@eslint-react/eslint-plugin": "1.52.6",
"@eslint/js": "9.33.0",
"@storybook/addon-docs": "9.1.2",
"@storybook/addon-vitest": "9.1.2",
"@storybook/react-vite": "9.1.2",
"@storybook/testing-library": "0.2.2",
"@types/node": "24.3.0",
"@types/react": "19.1.10",
"@types/react-dom": "19.1.7",
"@vitejs/plugin-react-swc": "4.0.1",
"@vitest/browser": "3.2.4",
"@vitest/coverage-v8": "3.2.4",
"@xyflow/react": "12.8.4",
"cspell": "9.2.0",
"dotenv-cli": "10.0.0",
"eslint": "9.33.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "0.4.20",
"eslint-plugin-sonarjs": "3.0.4",
"eslint-plugin-storybook": "9.1.2",
"gh-pages": "6.3.0",
"globals": "16.3.0",
"playwright": "1.55.0",
"prettier": "3.6.2",
"react": "19.1.1",
"react-dom": "19.1.1",
"release-it": "19.0.4",
"storybook": "9.1.2",
"typescript": "5.9.2",
"typescript-eslint": "8.40.0",
"vite": "7.1.3",
"vite-plugin-dts": "4.5.4",
"vitest": "3.2.4"
},
"peerDependencies": {
"@xyflow/react": ">=12",
"react": ">=18",
"react-dom": ">=18",
"typescript": ">=5"
}
}