-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.09 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
{
"name": "agentflow",
"private": true,
"version": "0.1.0",
"type": "module",
"description": "Visualize how nauroLabs agents work, what their components are, and how information flows between them.",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"validate-blueprints": "tsx scripts/validate-blueprints.ts",
"test": "vitest run --passWithNoTests"
},
"dependencies": {
"@types/dagre": "^0.7.54",
"@xyflow/react": "^12.11.1",
"dagre": "^0.8.5",
"react": "^19.2.6",
"react-dom": "^19.2.7"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.0",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"eslint": "^10.6.0",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.7.0",
"tsx": "^4.23.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1",
"vite": "^8.1.3",
"vitest": "^4.1.9"
}
}