-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.13 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
{
"name": "aiflow-motion",
"version": "0.9.0",
"description": "AIFLOW Motion — design animated AI-workflow diagrams (RAG, agents, data pipelines) in the browser and export them as PNG / SVG / GIF / MP4.",
"type": "module",
"private": true,
"scripts": {
"dev": "vite",
"server": "node server/index.js",
"start": "npm run build && node server/index.js",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src",
"test": "vitest",
"test:run": "vitest run",
"test:e2e": "playwright test",
"format": "prettier --write \"src/**/*.{js,ts,css,html}\""
},
"keywords": [
"ai",
"workflow",
"flowchart",
"rag",
"agent",
"diagram",
"visualization",
"claude"
],
"author": "dongou",
"license": "Apache-2.0",
"devDependencies": {
"@playwright/test": "^1.60.0",
"eslint": "^9.0.0",
"prettier": "^3.3.0",
"vite": "^5.4.0",
"vitest": "^2.0.0"
},
"dependencies": {
"dagre": "^0.8.5",
"express": "^4.19.2",
"gif.js": "^0.2.0",
"lucide": "^1.17.0",
"marked": "^12.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}