-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.6 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.6 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "desktop-ai",
"version": "1.0.0",
"description": "Desktop AI - Your AI assistant for daily usage, interviews, and productivity",
"main": "electron/main.js",
"scripts": {
"start": "concurrently \"npm run start:react\" \"npm run start:electron\"",
"start:react": "vite",
"start:electron": "wait-on http://localhost:5173 && electron .",
"build": "vite build",
"build:electron": "vite build && node scripts/fix-electron-paths.js && electron-builder",
"dev": "concurrently \"npm run start:react\" \"wait-on http://localhost:5173 && electron .\"",
"package": "npm run build && node scripts/fix-electron-paths.js && electron-builder --win",
"vercel-build": "npm run build"
},
"keywords": [
"electron",
"react",
"ai",
"interview",
"assistant",
"vercel"
],
"author": "Your Name",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.10.0",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2",
"electron": "^28.0.0",
"electron-builder": "^24.9.1",
"typescript": "^5.3.3",
"vite": "^5.0.8",
"wait-on": "^7.2.0"
},
"dependencies": {
"@supabase/supabase-js": "2.86.0",
"@vercel/analytics": "1.6.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.21.0",
"rehype-highlight": "^7.0.0",
"remark-gfm": "^4.0.0"
},
"build": {
"appId": "com.desktopai.app",
"productName": "Desktop AI",
"directories": {
"output": "dist-electron",
"buildResources": "build"
},
"files": [
"electron/**/*",
"dist/**/*"
],
"win": {
"target": [
"nsis",
"appx"
],
"icon": "resources/icon.ico",
"sign": null,
"extraResources": [
{
"from": "electron/whisper_local.py",
"to": "whisper_local.py"
},
{
"from": "resources/icon.ico",
"to": "resources/icon.ico"
},
{
"from": "resources/icon.png",
"to": "resources/icon.png"
}
],
"publisherName": "Desktop AI",
"verifyUpdateCodeSignature": false
},
"appx": {
"identityName": "InvestAILabsLLC.DesktopAI",
"publisher": "CN=0F9FA357-82A8-409A-93D5-BD23CD0CAB2C",
"publisherDisplayName": "InvestAI Labs LLC",
"applicationId": "DesktopAI",
"displayName": "Desktop AI",
"backgroundColor": "transparent"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}