-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.83 KB
/
package.json
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
98
99
100
101
102
{
"name": "OpenFlow",
"version": "0.0.2",
"main": "dist-electron/main/index.js",
"description": "OpenFlow is a local-first, extendable LLM (Large Language Model) orchestration app designed to streamline the running of LLM workflows locally.",
"author": {
"name": "swk777",
"email": "[email protected]"
},
"license": "MIT",
"private": true,
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:7777/"
}
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"preview": "vite preview",
"pree2e": "vite build --mode=test",
"e2e": "playwright test"
},
"dependencies": {
"@langchain/community": "^0.0.49",
"@langchain/openai": "^0.0.28",
"@mantine/core": "^7.7.1",
"@mantine/dropzone": "^7.7.2",
"@mantine/form": "^7.8.0",
"@mantine/hooks": "^7.7.1",
"@mantine/notifications": "^7.7.2",
"@mendable/firecrawl-js": "0.0.13",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@tabler/icons-react": "^3.1.0",
"cheerio": "^1.0.0-rc.12",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"d3-dsv": "^2.0.0",
"date-fns": "^3.6.0",
"electron-store": "8.2.0",
"electron-updater": "^6.1.8",
"framer-motion": "^11.1.7",
"hnswlib-node": "^1.4.2",
"html-to-text": "^9.0.5",
"immer": "9.0.2",
"jspdf": "^2.5.1",
"langchain": "^0.1.37",
"llamaindex": "^0.3.17",
"lodash": "^4.17.21",
"lowdb": "^7.0.1",
"lucide-react": "^0.364.0",
"mammoth": "^1.7.2",
"million": "^3.0.6",
"node-fetch": "^3.3.2",
"officeparser": "^4.1.1",
"ollama": "^0.5.0",
"openai": "^4.33.0",
"pdf-parse": "^1.1.1",
"ramda": "^0.29.1",
"react-router-dom": "^6.22.3",
"reactflow": "^11.10.4",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"ua-parser-js": "^1.0.37",
"uuid": "^9.0.1",
"youtube-transcript": "^1.2.1"
},
"devDependencies": {
"@playwright/test": "^1.42.1",
"@types/electron-store": "^3.2.0",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.2",
"@types/ramda": "^0.29.12",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"electron": "^30.0.3",
"electron-builder": "^24.13.3",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8.4.38",
"postcss-import": "^16.0.1",
"postcss-preset-mantine": "^1.13.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.2",
"vite": "^5.1.5",
"vite-plugin-electron": "^0.28.4",
"vite-plugin-electron-renderer": "^0.14.5"
}
}