-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.02 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.02 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
77
78
79
80
{
"name": "flowgenius",
"version": "1.0.0",
"description": "AI-Enhanced Local File Manager with intelligent organization and workflow automation",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"dev": "concurrently \"npm run watch\" \"wait-on http://localhost:3000 && electron .\"",
"watch": "webpack --mode development --watch",
"build": "webpack --mode production",
"build-electron": "electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"keywords": [
"electron",
"file-manager",
"ai",
"automation",
"productivity"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-react": "^7.22.0",
"babel-loader": "^9.1.3",
"concurrently": "^8.2.0",
"css-loader": "^6.8.1",
"electron": "^27.0.0",
"electron-builder": "^24.6.4",
"html-webpack-plugin": "^5.5.3",
"style-loader": "^3.3.3",
"wait-on": "^7.0.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@electron/remote": "^2.0.12",
"@langchain/community": "^0.3.47",
"@langchain/core": "^0.3.61",
"@langchain/langgraph": "^0.3.6",
"@langchain/openai": "^0.3.17",
"axios": "^1.6.0",
"chokidar": "^3.5.3",
"dotenv": "^17.0.1",
"electron-oauth-helper": "^5.1.1",
"electron-store": "^8.1.0",
"file-type": "^18.5.0",
"firebase": "^10.7.0",
"fuse.js": "^7.0.0",
"googleapis": "^150.0.1",
"langchain": "^0.3.29",
"mammoth": "^1.6.0",
"mime-types": "^2.1.35",
"openai": "^4.20.0",
"pdf-parse": "^1.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"build": {
"appId": "com.flowgenius.app",
"productName": "FlowGenius",
"directories": {
"output": "dist"
},
"files": [
"src/**/*",
"node_modules/**/*"
],
"mac": {
"category": "public.app-category.productivity"
},
"win": {
"target": "nsis"
},
"linux": {
"target": "AppImage"
}
}
}