-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.94 KB
/
Copy pathpackage.json
File metadata and controls
128 lines (128 loc) · 3.94 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@tisoap/react-flow-smart-edge",
"version": "4.13.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/docs",
"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",
"workspaces": [
"website"
],
"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 && npm run build-docs",
"build-component": "vite build",
"build-docs": "npm run build-component && DOCUSAURUS_BASE_URL=/react-flow-smart-edge/ npm run build -w website",
"build-storybook": "storybook build",
"check": "npm run typecheck && npm run spellcheck && npm run eslint && npm run prettier",
"deploy-docs": "npm run build-docs && npm run gh-pages",
"docs": "DOCUSAURUS_BASE_URL=/ npm run start -w website",
"dev": "vite",
"eslint": "eslint .",
"eslint-fix": "eslint . --fix",
"fix": "npm run eslint-fix && npm run prettier-write",
"gh-pages": "gh-pages -d website/build",
"install-chromium": "npx playwright install chromium --with-deps",
"prettier": "prettier --check .",
"prettier-write": "prettier --write .",
"preview": "vite preview",
"prepublishOnly": "npm run build-component",
"prerelease": "npm run test:coverage",
"release": "dotenv release-it",
"spellcheck": "cspell lint --no-progress .",
"storybook": "storybook dev -p 6006",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test-storybook": "vitest run --project=storybook",
"test-unit": "vitest run --project=unit",
"typecheck": "tsc --build --noEmit"
},
"devDependencies": {
"@chromatic-com/storybook": "5.2.1",
"@eslint-community/eslint-plugin-eslint-comments": "4.7.2",
"@eslint-react/eslint-plugin": "5.9.2",
"@eslint/js": "10.0.1",
"@microsoft/api-extractor": "7.58.9",
"@storybook/addon-a11y": "10.4.6",
"@storybook/addon-docs": "10.4.6",
"@storybook/addon-vitest": "10.4.6",
"@storybook/react-vite": "10.4.6",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/node": "26.0.0",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.3",
"@vitest/browser": "4.1.9",
"@vitest/browser-playwright": "4.1.9",
"@vitest/coverage-v8": "4.1.9",
"@xyflow/react": "12.11.1",
"cspell": "10.0.1",
"dotenv-cli": "11.0.0",
"eslint": "10.5.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.6",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "0.5.3",
"eslint-plugin-react-you-might-not-need-an-effect": "1.0.1",
"eslint-plugin-sonarjs": "4.1.0",
"eslint-plugin-storybook": "10.4.6",
"gh-pages": "6.3.0",
"globals": "17.7.0",
"jiti": "2.7.0",
"jsdom": "29.1.1",
"playwright": "1.61.1",
"prettier": "3.8.4",
"react": "19.2.7",
"react-dom": "19.2.7",
"release-it": "20.2.0",
"storybook": "10.4.6",
"typescript": "6.0.3",
"typescript-eslint": "8.62.0",
"vite": "8.1.0",
"vite-plugin-dts": "5.0.3",
"vitest": "4.1.9"
},
"peerDependencies": {
"@xyflow/react": ">=12",
"react": ">=18",
"react-dom": ">=18"
},
"allowScripts": {
"esbuild@0.28.1": true,
"core-js@3.49.0": true
}
}