-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.67 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.67 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
97
98
{
"name": "vars",
"version": "1.2.2",
"description": "VARS (Virtual Agent for Real-time Support) - AI assistant that listens to calls and provides knowledge-based answers, invisible to screen sharing",
"main": "src/main/index.js",
"scripts": {
"start": "electron .",
"dev": "electron . --dev",
"build": "electron-builder",
"build:mac": "electron-builder --mac",
"build:win": "electron-builder --win",
"build:linux": "electron-builder --linux",
"convert-icon": "node scripts/convert-icon.js"
},
"build": {
"appId": "com.vars.app",
"productName": "VARS",
"directories": {
"output": "dist"
},
"mac": {
"target": "dmg",
"icon": "src/assets/icon.png",
"artifactName": "${productName}-mac-${arch}.${ext}",
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"extendInfo": {
"NSMicrophoneUsageDescription": "VARS needs access to your microphone to transcribe audio and provide AI assistance.",
"NSCameraUsageDescription": "VARS does not use the camera."
}
},
"dmg": {
"sign": false,
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": "nsis",
"icon": "build/icon.ico",
"artifactName": "${productName}-${os}-${arch}.${ext}"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": false,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"runAfterFinish": false,
"installerIcon": "build/icon.ico",
"uninstallerIcon": "build/icon.ico",
"installerHeaderIcon": "build/icon.ico",
"shortcutName": "VARS"
},
"linux": {
"target": "AppImage",
"icon": "src/assets/icon.png",
"category": "Utility",
"artifactName": "${productName}-${os}-${arch}.${ext}"
},
"artifactName": "${productName}-${os}-${arch}.${ext}"
},
"keywords": [
"electron",
"ai",
"transcription",
"openai",
"whisper"
],
"author": "",
"license": "GPL-3.0",
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^24.9.1",
"png-to-ico": "^3.0.1",
"sharp": "^0.34.5"
},
"dependencies": {
"@google/genai": "^1.37.0",
"@google/generative-ai": "^0.24.1",
"@napi-rs/whisper": "^0.0.4",
"ffmpeg-static": "^5.3.0",
"mic": "^2.1.2",
"openai": "^4.52.0",
"ws": "^8.18.3"
}
}