-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.92 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.92 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
{
"name": "workflow",
"version": "0.1.0",
"description": "Visual node-based graph editor for AI workflows",
"author": "softwareByAndi <softwareByAndi@gmail.com>",
"private": true,
"main": "./out/main/index.js",
"scripts": {
"dev": "lsof -iTCP:5173 -sTCP:LISTEN -t >/dev/null 2>&1 && echo 'Instance already running on port 5173' || electron-vite dev",
"build": "electron-vite build",
"start": "electron-vite preview",
"lint": "eslint",
"build:mac": "npm run build && electron-builder --mac",
"build:win": "npm run build && electron-builder --win",
"build:linux": "npm run build && electron-builder --linux",
"build:all": "npm run build && electron-builder --mac --win --linux",
"build:publish": "npm run build && electron-builder --mac --win --linux --publish always",
"test": "vitest run",
"test:watch": "vitest",
"build:e2e": "VITE_E2E_TEST=1 electron-vite build",
"test:e2e": "npm run build:e2e && playwright test --config playwright.config.ts",
"test:submit": "WORKFLOW_TEST_MODEL=claude-haiku-4-5-20251001 vitest run && npm run build:e2e && playwright test --config playwright.submit.config.ts",
"test:adhoc": "playwright test --config playwright.adhoc.config.ts",
"specs:list": "python3 scripts/spec-tree.py",
"project:map": "python3 scripts/project-map.py",
"ntfy": "ntfy publish my-workflow-alerts-a8f3z",
"epic:validate": "python3 scripts/validate-epic.py",
"hooks:toggle": "if [ -f .claude/hooks/.enabled ]; then rm .claude/hooks/.enabled; echo 'Auto-deny hooks DISABLED'; else touch .claude/hooks/.enabled; echo 'Auto-deny hooks ENABLED'; fi"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.74.0",
"@codemirror/lang-python": "^6.2.1",
"@dagrejs/dagre": "^2.0.4",
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^4.0.0",
"@radix-ui/react-popover": "^1.1.15",
"@uiw/react-codemirror": "^4.25.4",
"@xyflow/react": "^12.10.0",
"chokidar": "^4.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dockerode": "^4.0.9",
"dotenv": "^16.4.7",
"electron-log": "^5.4.3",
"electron-updater": "^6.7.3",
"handlebars": "^4.7.8",
"lucide-react": "^0.564.0",
"nanoid": "^5.1.6",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"tailwind-merge": "^3.4.0",
"tar-fs": "^3.1.1",
"zustand": "^5.0.11"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "^4",
"@types/dagre": "^0.7.53",
"@types/dockerode": "^4.0.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/tar-fs": "^2.0.4",
"@vitejs/plugin-react": "^4.5.2",
"electron": "^35.1.2",
"electron-builder": "^26.0.12",
"electron-vite": "^3.1.0",
"eslint": "^9",
"shadcn": "^3.8.4",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vitest": "^4.0.18"
}
}