-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.72 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
{
"name": "@abstractframework/flow",
"version": "0.3.19",
"description": "AbstractFlow visual workflow editor for AbstractFramework",
"type": "module",
"author": "Laurent-Philippe Albou",
"license": "MIT",
"keywords": [
"abstractframework",
"workflow",
"visual-editor",
"drag-and-drop",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/lpalbou/AbstractFlow.git"
},
"homepage": "https://github.com/lpalbou/AbstractFlow#readme",
"publishConfig": {
"access": "public"
},
"bin": {
"abstractflow-editor": "./bin/cli.js"
},
"files": [
"dist",
"bin",
"README.md"
],
"scripts": {
"dev": "vite --host --port 3003",
"build": "tsc && vite build",
"preview": "vite preview",
"start": "node ./bin/cli.js",
"test": "vitest run",
"docs:llms": "node ./scripts/generate-llms-full.mjs",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prepublishOnly": "npm run build"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reactflow": "^11.10.4",
"@monaco-editor/react": "^4.6.0",
"@tanstack/react-query": "^5.17.0",
"zustand": "^4.4.7",
"react-hot-toast": "^2.4.1",
"clsx": "^2.1.0",
"dompurify": "3.2.7",
"marked": "14.0.0"
},
"devDependencies": {
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.0",
"typescript": "^5.3.3",
"vite": "^6.4.1",
"vitest": "^4.1.8"
}
}