-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.57 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.57 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
{
"name": "@powerjob/power-workflow-next",
"version": "1.0.2",
"description": "基于 React Flow 的 PowerJob 工作流可视化组件",
"keywords": [
"workflow",
"flowchart",
"react-flow",
"powerjob",
"visual-editor",
"dagre",
"workflow-editor"
],
"author": "Echo009",
"license": "Apache-2.0",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./style.css": "./dist/style.css"
},
"files": [
"dist",
"README.md"
],
"sideEffects": [
"**/*.css"
],
"scripts": {
"dev": "vite --host 127.0.0.1",
"build": "tsc -b && vite build",
"build:lib": "tsc -b && vite build --mode lib",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"regression:connection-snap": "node playground/regression/connection-snap/regression-test-final.mjs",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build:lib && npm run test"
},
"peerDependencies": {
"@xyflow/react": ">=12.0.0",
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"@radix-ui/react-tooltip": "^1.2.8",
"clsx": "^2.1.1",
"dagre": "^0.8.5",
"lucide-react": "^0.574.0",
"tailwind-merge": "^3.4.1",
"zustand": "^5.0.11"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/dagre": "^0.7.53",
"@types/node": "^24.10.13",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^5.1.4",
"@vitejs/plugin-vue": "^6.0.4",
"@xyflow/react": "^12.10.0",
"autoprefixer": "^10.4.24",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"jsdom": "^27.0.1",
"playwright": "^1.58.2",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.19",
"typescript": "~5.9.3",
"typescript-eslint": "^8.48.0",
"vite": "^7.3.1",
"vitest": "^3.2.4"
},
"repository": {
"type": "git",
"url": "https://github.com/PowerJob/power-workflow-next.git"
},
"bugs": {
"url": "https://github.com/PowerJob/power-workflow-next/issues"
},
"homepage": "https://github.com/PowerJob/power-workflow-next#readme"
}